File size: 166 Bytes
1e92f2d | 1 2 3 4 5 6 7 | import { createContext, useContext } from 'react'
const SSGContext = createContext({})
export default SSGContext
export const useSSG = () => useContext(SSGContext)
|
1e92f2d | 1 2 3 4 5 6 7 | import { createContext, useContext } from 'react'
const SSGContext = createContext({})
export default SSGContext
export const useSSG = () => useContext(SSGContext)
|