mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
14 lines
330 B
TypeScript
14 lines
330 B
TypeScript
import { createReducer } from '~/utils/reducer';
|
|
import { LAB_HANDLERS } from '~/redux/lab/handlers';
|
|
import { ILabState } from '~/redux/lab/types';
|
|
|
|
const INITIAL_STATE: ILabState = {
|
|
list: {
|
|
is_loading: false,
|
|
nodes: [],
|
|
count: 0,
|
|
error: '',
|
|
},
|
|
};
|
|
|
|
export default createReducer(INITIAL_STATE, LAB_HANDLERS);
|