Skip to content

Instantly share code, notes, and snippets.

@ernestofreyreg
Created January 16, 2020 14:36
Show Gist options
  • Save ernestofreyreg/8727d20b9b90f5110eab54948a8a8e2e to your computer and use it in GitHub Desktop.
Save ernestofreyreg/8727d20b9b90f5110eab54948a8a8e2e to your computer and use it in GitHub Desktop.
import * as React from 'react'
import { NextPage } from 'next'
import { useAuth0 } from '../lib/auth0-spa'
import NavigationBar from '../components/NavigationBar'
interface Props {}
const Page: NextPage<Props> = () => {
const { user } = useAuth0()
return (
<div>
<h1>Initial Page</h1>
<div>
{user && user.nickname}
<NavigationBar />
</div>
</div>
)
}
export default Page
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment