saleor-dashboard/src/containers/AppState/state.ts
2019-11-14 15:10:52 +01:00

13 lines
228 B
TypeScript

export type AppError = "unhandled" | "not-found";
interface IAppState {
error: AppError | null;
loading: boolean;
}
export const initialAppState: IAppState = {
error: null,
loading: false
};
export default IAppState;