import * as React from 'react'; import { IStateliStore } from 'stateli'; export interface IAppContext { store: IStateliStore; } export const CreateAppContext = (defaultValue: IAppContext) => { return React.createContext>(defaultValue); };