UNPKG

@ovine/core

Version:

Build flexible admin system with json.

10 lines (9 loc) 246 B
import { useContext, createContext } from 'react'; export const AppContext = createContext({ locale: 'zh-CN', enableRouteTabs: true, setContext: () => { // }, }); export const useAppContext = () => useContext(AppContext);