aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages/FormPage.tsx
blob: aa4cec35d829a23dafb30185579eebabf8e5acf6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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;