Bookmarks view with grid + redux actions

This commit is contained in:
unknown
2021-05-23 18:38:39 +02:00
parent 27250dc850
commit e22e5afcb9
20 changed files with 297 additions and 19 deletions

View File

@@ -1,7 +1,9 @@
import { State as AppState } from '../store/reducers/app';
import { State as ThemeState } from '../store/reducers/theme';
import { State as BookmarkState } from '../store/reducers/bookmark';
export interface GlobalState {
theme: ThemeState;
app: AppState;
bookmark: BookmarkState;
}