portfolio/src/store/createContext.jsx

6 lines
95 B
React
Raw Normal View History

2018-09-16 21:33:42 +02:00
import { createContext } from 'react'
2019-11-09 19:12:58 +01:00
const Context = createContext()
2018-09-16 21:33:42 +02:00
2019-11-09 19:12:58 +01:00
export default Context