import { configureStore } from '@reduxjs/toolkit'; import challengeReducer from './challengeSlice'; import userReducer from './userSlice'; export const store = configureStore({ reducer: { user: userReducer, challenge: challengeReducer, }, // React Native 环境默认即可 }); export type RootState = ReturnType; export type AppDispatch = typeof store.dispatch;