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

added updated nodes to flow

This commit is contained in:
Fedor Katurov 2019-10-30 17:26:30 +07:00
parent 6f76bec2c0
commit 74cd181530
13 changed files with 128 additions and 30 deletions

View file

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