11 lines
297 B
TypeScript
11 lines
297 B
TypeScript
|
|
import { configureStore } from "@reduxjs/toolkit";
|
||
|
|
import authReducer from "../features/auth/authSlice";
|
||
|
|
|
||
|
|
export const store = configureStore({
|
||
|
|
reducer: {
|
||
|
|
auth: authReducer,
|
||
|
|
},
|
||
|
|
});
|
||
|
|
|
||
|
|
export type RootState = ReturnType<typeof store.getState>;
|
||
|
|
export type AppDispatch = typeof store.dispatch;
|