aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2020-09-29 01:00:23 +0100
committerGravatar Joe Banks <[email protected]>2020-09-29 01:00:23 +0100
commit5e959c4beb90331edf7eb6b7048354bd7f9d1ebb (patch)
treee87aa5be51604d98e47ae42735cb10a92f81e316
parentUpdate header responsiveness (diff)
Add a dummy page for form information
-rw-r--r--src/pages/FormPage.tsx12
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;