Added: fully working signin/signup system with routing

This commit is contained in:
2024-05-06 22:18:22 +02:00
parent bd5f7388b8
commit 89075eb6ae
19 changed files with 1199 additions and 41 deletions

View File

@ -0,0 +1,6 @@
import { useAuth } from "../context/AuthContext";
export function useIsAutheticated() {
const { authState } = useAuth();
return authState.authenticated
}