Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save lorenzejay/d07317069f78cd402bc882e33b1e729b to your computer and use it in GitHub Desktop.
Save lorenzejay/d07317069f78cd402bc882e33b1e729b to your computer and use it in GitHub Desktop.
const Build = () => {
const router = useRouter();
const { session } = useContext(UserContext);
useEffect(() => {
if (!session) {
router.push("/signin");
}
}, [session]);
return (
<Layout mainBgColor="">
<h3>Build Page</h3>
</Layout>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment