Newer
Older
const UserContext = createContext({
IsloggedIn : false,
UserName : "",
LogIn : ()=>{},
LogOut : ()=>{},
CheckSession : ()=>{}
});
const LocationContext = createContext({
});
export {UserContext, LocationContext}