mirror of
https://github.com/kevin-DL/commander_league_web.git
synced 2026-01-11 18:14:27 +00:00
18 lines
280 B
JavaScript
18 lines
280 B
JavaScript
import Link from "next/link";
|
|
|
|
const AuthRequired = (props) => {
|
|
return (
|
|
<>
|
|
<p>Hi there!</p>
|
|
<p>
|
|
You are not signed in.{" "}
|
|
<Link href={"/auth"}>
|
|
<a>Sign in</a>
|
|
</Link>
|
|
</p>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default AuthRequired;
|