mirror of
https://github.com/kevin-DL/commander_league_web.git
synced 2026-01-14 11:14:40 +00:00
18 lines
304 B
JavaScript
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
|