diff options
author | 2020-09-29 01:17:12 +0100 | |
---|---|---|
committer | 2020-09-29 01:17:12 +0100 | |
commit | 7e9f264f1ce4846c1d8e395133f82f636f746fe0 (patch) | |
tree | b3fcae77b8fd51400fb59e09dac5d2ba99b1b4c5 /src/pages/FormPage.tsx | |
parent | Merge pull request #11 from python-discord/responsive/fix-phone-sizing (diff) | |
parent | Update tests to match new form listing component (diff) |
Merge pull request #12 from python-discord/routing/add-react-router
Add routing
Diffstat (limited to 'src/pages/FormPage.tsx')
-rw-r--r-- | src/pages/FormPage.tsx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/pages/FormPage.tsx b/src/pages/FormPage.tsx new file mode 100644 index 0000000..aa4cec3 --- /dev/null +++ b/src/pages/FormPage.tsx @@ -0,0 +1,12 @@ +/** @jsx jsx */ +import { jsx } from "@emotion/core"; +import { Link } from "react-router-dom"; + +function FormPage() { + return <div css={{marginLeft: "20px"}}> + <h1>Form page</h1> + <Link to="/" css={{color: "white"}}>Go home</Link> + </div> +} + +export default FormPage; |