mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-14 19:27:55 +01:00
12 lines
224 B
TypeScript
12 lines
224 B
TypeScript
|
|
||
|
import { configureStore } from '@reduxjs/toolkit';
|
||
|
import clientReducer from './clientSlice';
|
||
|
|
||
|
// Create Service object...
|
||
|
const store = configureStore({
|
||
|
reducer: {
|
||
|
client: clientReducer
|
||
|
}
|
||
|
});
|
||
|
|
||
|
export default store;
|