UNPKG

@ovine/core

Version:

Build flexible admin system with json.

10 lines (9 loc) 354 B
/// <reference types="react" /> import { ImmerSetter } from "../../utils/hooks"; export declare type AppContextState = { locale: string; enableRouteTabs: boolean; setContext: ImmerSetter<AppContextState>; }; export declare const AppContext: import("react").Context<AppContextState>; export declare const useAppContext: () => AppContextState;