8 lines
199 B
TypeScript
8 lines
199 B
TypeScript
import { Action } from './reducer';
|
|
import { AppContextState } from './AppContextState.interface';
|
|
|
|
export interface AppContextProps {
|
|
state: AppContextState;
|
|
dispatch: React.Dispatch<Action>;
|
|
}
|