mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-08-20 20:18:18 -04:00
feat: cargo project at root
This commit is contained in:
parent
aa0c0623ca
commit
709a2820c4
313 changed files with 1 additions and 740 deletions
9
src-gui/src/renderer/store/storeRenderer.ts
Normal file
9
src-gui/src/renderer/store/storeRenderer.ts
Normal file
|
@ -0,0 +1,9 @@
|
|||
import { configureStore } from '@reduxjs/toolkit';
|
||||
import { reducers } from 'store/combinedReducer';
|
||||
|
||||
export const store = configureStore({
|
||||
reducer: reducers,
|
||||
});
|
||||
|
||||
export type AppDispatch = typeof store.dispatch;
|
||||
export type RootState = ReturnType<typeof store.getState>;
|
Loading…
Add table
Add a link
Reference in a new issue