Informational Site: Typescript (#63)

* #16 pt 2 - adding typescript
* Updating package/package-lock
This commit is contained in:
Nat Hillard 2021-05-19 18:55:10 -04:00 committed by GitHub
commit ad72a5014c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 112 additions and 231 deletions

View file

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