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

left panel with git logs at boris

This commit is contained in:
Fedor Katurov 2020-06-09 11:20:46 +07:00
parent 13ac60a1e6
commit cb518f0528
15 changed files with 211 additions and 44 deletions

View file

@ -10,15 +10,15 @@ export type IStatGitRow = {
export type IBorisState = Readonly<{
stats: {
git: IStatGitRow[];
is_loading: boolean;
};
is_loading: boolean;
}>;
const BORIS_INITIAL_STATE: IBorisState = {
stats: {
git: [],
is_loading: false,
},
is_loading: false,
};
export default createReducer(BORIS_INITIAL_STATE, BORIS_HANDLERS);