blob: 2e2bfd62cd90d08930d718391b2af5d2393d642a (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
 | /** @jsx jsx */
import { css, jsx } from "@emotion/core";
import HeaderBar from "../components/HeaderBar";
import FormListing from "../components/FormListing";
import { getForms } from "../api/forms";
import OAuth2Button from "../components/OAuth2Button";
function LandingPage() {
  return <div>
    <HeaderBar/>
    <div>
      <div css={css`
        display: flex;
        align-items: center;
        flex-direction: column;
      `}>
        <h1>Available Forms</h1>
        <OAuth2Button/>
        {getForms().map(form => (
          <FormListing key={form.id} form={form}/>
        ))}
      </div>
    </div>
  </div>
}
export default LandingPage;
 |