mirror of
https://github.com/kevin-DL/commander_league_web.git
synced 2026-01-11 18:14:27 +00:00
19 lines
398 B
JavaScript
19 lines
398 B
JavaScript
import Link from "next/link";
|
|
import DefaultLayout from "../components/defaultLayout";
|
|
|
|
const Example = (props) => {
|
|
return (
|
|
<DefaultLayout requiresAuth>
|
|
<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>
|
|
</DefaultLayout>
|
|
);
|
|
};
|
|
|
|
export default Example;
|