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.
 
 
 
 
 
 

15 lines
416 B

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