You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
481 B

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<typeof store.getState>
export type AppDispatch = typeof store.dispatch