Adding Trussworks USWDS React Wrapper (#67)

* removing unused js
* Working for first load, second raises 'failed to SSR' without DEV_SSR enabled. We will need to fix this before prod
This commit is contained in:
Nat Hillard 2021-05-20 21:54:08 -04:00 committed by GitHub
commit 13a4e5f47a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 1036 additions and 256 deletions

View file

@ -1,15 +1,15 @@
import * as React from "react"
import {GovBanner} from '@trussworks/react-uswds';
// markup
const IndexPage = () => {
return (
<>
<main>
<GovBanner />
<title>Justice40</title>
<h1>Justice40</h1>
</main>
</>
)
}
export default IndexPage
export default IndexPage;