12 lines
230 B
TypeScript
Raw Normal View History

2021-02-22 22:37:29 -08:00
import { configureStore } from '@reduxjs/toolkit'
import clientReducer from './clientSlice'
2021-02-04 23:05:46 -08:00
// Create Service object...
const store = configureStore({
2021-02-22 22:37:29 -08:00
reducer: {
client: clientReducer,
},
})
2021-02-04 23:05:46 -08:00
2021-02-22 22:37:29 -08:00
export default store