2022-03-17 05:11:27 +01:00
|
|
|
import { configureStore } from '@reduxjs/toolkit';
|
|
|
|
import appReducer from './slices/app';
|
2022-03-17 22:18:41 +01:00
|
|
|
import collectionsReducer from './slices/collections';
|
2022-03-18 00:13:35 +01:00
|
|
|
import tabsReducer from './slices/tabs';
|
2022-03-17 05:11:27 +01:00
|
|
|
|
|
|
|
export const store = configureStore({
|
|
|
|
reducer: {
|
2022-03-17 22:18:41 +01:00
|
|
|
app: appReducer,
|
2022-03-18 00:13:35 +01:00
|
|
|
collections: collectionsReducer,
|
|
|
|
tabs: tabsReducer
|
2022-03-17 05:11:27 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
export default store;
|