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.
12 lines
291 B
12 lines
291 B
import { configureStore } from '@reduxjs/toolkit'
|
|
import authSlice from './authSlice'
|
|
|
|
export const store = configureStore({
|
|
reducer: {
|
|
auth: authSlice,
|
|
},
|
|
enhancers: [],
|
|
})
|
|
|
|
export type RootState = ReturnType<typeof store.getState>
|
|
export type AppDispatch = typeof store.dispatch
|