store.ts 317 B

1234567891011
  1. import rootReducer, { RootState } from './rootReducer';
  2. import { configureStore } from '@reduxjs/toolkit';
  3. const store = (initialState? : RootState) => configureStore({
  4. reducer: rootReducer,
  5. preloadedState: initialState
  6. });
  7. export type AppDispatch = ReturnType<typeof store>["dispatch"];
  8. export default store;