saleor-dashboard/src/containers/AppState/state.ts

14 lines
228 B
TypeScript
Raw Normal View History

2019-11-14 14:10:52 +00:00
export type AppError = "unhandled" | "not-found";
interface IAppState {
error: AppError | null;
loading: boolean;
}
export const initialAppState: IAppState = {
error: null,
loading: false
};
export default IAppState;