auth WIP 2

This commit is contained in:
2025-08-28 18:37:26 +03:00
parent 533da219b3
commit d23546d6e0
9 changed files with 97 additions and 35 deletions

View File

@ -3,9 +3,7 @@ import AuthContext from "./auth-provider"
function useAuth() {
return (
useContext(AuthContext)
);
return useContext(AuthContext);
}
export default useAuth;