mirror of
https://github.com/usebruno/bruno.git
synced 2025-04-11 18:18:18 +02:00
17 lines
437 B
JavaScript
17 lines
437 B
JavaScript
import { configureStore } from '@reduxjs/toolkit';
|
|
import appReducer from './slices/app';
|
|
import collectionsReducer from './slices/collections';
|
|
import tabsReducer from './slices/tabs';
|
|
import workspacesReducer from './slices/workspaces';
|
|
|
|
export const store = configureStore({
|
|
reducer: {
|
|
app: appReducer,
|
|
collections: collectionsReducer,
|
|
tabs: tabsReducer,
|
|
workspaces: workspacesReducer
|
|
}
|
|
});
|
|
|
|
export default store;
|