auditforge / frontend /src /components /AuthProvider.tsx
Kaballas's picture
initialize project structure with essential configurations and components
56b6519
raw
history blame contribute delete
523 Bytes
import { createContext, PropsWithChildren, useContext, useState } from 'react';
const AuthContext = createContext<boolean | null>(null);
type AuthProviderProps = PropsWithChildren & {
isSignedIn?: boolean;
};
const AuthProvider = ({ children, isSignedIn }: AuthProviderProps) => {
const [user] = useState<boolean | null>(isSignedIn ? true : null);
return <AuthContext.Provider value={user}>{children}</AuthContext.Provider>;
};
export const useAuth = () => useContext(AuthContext);
export default AuthProvider;