Files
commander_league_web/pages/example.js

18 lines
304 B
JavaScript

import Link from 'next/link'
const Example = (props) => {
return (
<div>
<p>
This page is static because it does not fetch any data or include the
authed user info.
</p>
<Link href={'/'}>
<a>Home</a>
</Link>
</div>
)
}
export default Example