import { configureStore } from '@reduxjs/toolkit' import apiKeyReducer from './apiKeySlice' import authReducer from './authSlice' import deviceReducer from './deviceSlice' import statsReducer from './statsSlice' export const store = configureStore({ reducer: { auth: authReducer, apiKey: apiKeyReducer, device: deviceReducer, stats: statsReducer, }, }) export type RootState = ReturnType export type AppDispatch = typeof store.dispatch