Skip to content

Instantly share code, notes, and snippets.

@ernestofreyreg
Created January 11, 2020 17:51
Show Gist options
  • Save ernestofreyreg/6f61bb7ffc765b14c341ff627c031a24 to your computer and use it in GitHub Desktop.
Save ernestofreyreg/6f61bb7ffc765b14c341ff627c031a24 to your computer and use it in GitHub Desktop.
import * as React from 'react'
import { NextPage } from 'next'
interface Props {}
const Page: NextPage<Props> = () => (
<div>Initial Page</div>
)
export default Page
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment