import { configureStore } from '@reduxjs/toolkit' import authReducer from './slices/authSlice' import tabsReducer from './slices/tabsSlice' export const store = configureStore({ reducer: { auth: authReducer, tabs: tabsReducer, }, }) export type RootState = ReturnType export type AppDispatch = typeof store.dispatch