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