mirror of
https://github.com/lemeow125/Borrowing-TrackerFrontend.git
synced 2025-04-05 01:21:35 +08:00
15 lines
470 B
TypeScript
15 lines
470 B
TypeScript
import { configureStore } from "@reduxjs/toolkit";
|
|
import AuthReducer from "../Slices/AuthSlice/AuthSlice";
|
|
|
|
const store = configureStore({
|
|
reducer: {
|
|
auth: AuthReducer,
|
|
},
|
|
});
|
|
|
|
export default store;
|
|
|
|
// Infer the `RootState` and `AppDispatch` types from the store itself
|
|
export type RootState = ReturnType<typeof store.getState>;
|
|
// Inferred type: {posts: PostsState, comments: CommentsState, users: UsersState}
|
|
export type AppDispatch = typeof store.dispatch;
|