1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

hero slider

This commit is contained in:
Fedor Katurov 2019-10-24 15:44:40 +07:00
parent a9da7e8cef
commit 5cd5941be0
12 changed files with 266 additions and 14 deletions

View file

@ -5,11 +5,13 @@ import { FLOW_HANDLERS } from './handlers';
export type IFlowState = Readonly<{
is_loading: boolean;
nodes: INode[];
heroes: Partial<INode>[];
error: IError;
}>;
const INITIAL_STATE: IFlowState = {
nodes: [],
heroes: [],
is_loading: false,
error: null,
};