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:
parent
920a8adaa2
commit
746d10ce8b
8 changed files with 38 additions and 9 deletions
|
@ -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,
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue