aboutsummaryrefslogtreecommitdiffstats
path: root/src/contexts/UserContext.js
blob: 7d2527e89419788c24659604fa7afc2254e8ca9a (plain) (blame)
1
2
3
4
5
6
7
8
import { createContext } from 'react'

const UserContext = createContext({
  userProfile: null,
  setUserProfile: () => {},
})

export { UserContext }