UNPKG

modaq

Version:

Quiz Bowl Reader using TypeScript, React, and MobX

8 lines (7 loc) 287 B
import React from "react"; import { AppState } from "../state/AppState"; export declare const StateContext: React.Context<AppState>; export declare const StateProvider: React.FunctionComponent<IStateProviderProps>; export interface IStateProviderProps { appState: AppState; }