blob: ebf14086799d8d1c33126271beaaf8487bb410a6 [file] [log] [blame]
22301014bc4616f2025-06-03 16:59:44 +08001import { configureStore } from '@reduxjs/toolkit'
2
3export const store = configureStore({
4 reducer: {
5
6 }
7})
8
9// 从 store 本身推断出 `RootState` 和 `AppDispatch` 类型
10export type RootState = ReturnType<typeof store.getState>
11// 推断出类型: {posts: PostsState, comments: CommentsState, users: UsersState}
12export type AppDispatch = typeof store.dispatch