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