UNPKG

arredemo

Version:

Instantly build a static site for your package

10 lines (7 loc) 191 B
import {useContext} from 'react' import AppContext from './AppContext' const useAppContext = ( )=> { const context= useContext(AppContext) return context } export default useAppContext