mirror of
https://github.com/usebruno/bruno.git
synced 2025-01-09 15:38:34 +01:00
15 lines
349 B
JavaScript
15 lines
349 B
JavaScript
import { configureStore } from '@reduxjs/toolkit';
|
|
import appReducer from './slices/app';
|
|
import collectionsReducer from './slices/collections';
|
|
import tabsReducer from './slices/tabs';
|
|
|
|
export const store = configureStore({
|
|
reducer: {
|
|
app: appReducer,
|
|
collections: collectionsReducer,
|
|
tabs: tabsReducer
|
|
}
|
|
});
|
|
|
|
export default store;
|