import { createContext } from 'react'; const UserContext = createContext({ IsloggedIn : false, UserName : "", LogIn : ()=>{}, LogOut : ()=>{}, CheckSession : ()=>{} }); const LocationContext = createContext({ }); export {UserContext, LocationContext}