2657469
1 2 3 4 5 6 7 8
import { createContext } from 'react' const UserContext = createContext({ userProfile: null, setUserProfile: () => {}, }) export { UserContext }