mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-13 10:47:56 +01:00
10 lines
205 B
TypeScript
10 lines
205 B
TypeScript
import { configureStore } from '@reduxjs/toolkit';
|
|
import rootReducer from './rootReducer';
|
|
|
|
// Create Service object...
|
|
const store = configureStore({
|
|
reducer: rootReducer,
|
|
});
|
|
|
|
export default store;
|