forked from extern/bruno
13 lines
285 B
JavaScript
13 lines
285 B
JavaScript
import { configureStore } from '@reduxjs/toolkit';
|
|
import appReducer from './slices/app';
|
|
import collectionsReducer from './slices/collections';
|
|
|
|
export const store = configureStore({
|
|
reducer: {
|
|
app: appReducer,
|
|
collections: collectionsReducer
|
|
}
|
|
});
|
|
|
|
export default store;
|