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

added recent to reducer

This commit is contained in:
Fedor Katurov 2019-10-28 18:26:12 +07:00
parent 920a8adaa2
commit 746d10ce8b
8 changed files with 38 additions and 9 deletions

View file

@ -6,12 +6,14 @@ export type IFlowState = Readonly<{
is_loading: boolean;
nodes: INode[];
heroes: Partial<INode>[];
recent: Partial<INode>[];
error: IError;
}>;
const INITIAL_STATE: IFlowState = {
nodes: [],
heroes: [],
recent: [],
is_loading: false,
error: null,
};