/** @jsx jsx */ import { css, jsx } from "@emotion/core"; import HeaderBar from "../components/HeaderBar"; import FormListing from "../components/FormListing"; import { getForms } from "../api/forms"; function LandingPage() { return

Available Forms

{getForms().map(form => ( ))}
} export default LandingPage;