blob: ebf14086799d8d1c33126271beaaf8487bb410a6 [file] [log] [blame]
import { configureStore } from '@reduxjs/toolkit'
export const store = configureStore({
reducer: {
}
})
// 从 store 本身推断出 `RootState` 和 `AppDispatch` 类型
export type RootState = ReturnType<typeof store.getState>
// 推断出类型: {posts: PostsState, comments: CommentsState, users: UsersState}
export type AppDispatch = typeof store.dispatch