mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-15 03:27:57 +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; |