import { configureStore } from '@reduxjs/toolkit'; import boxReducer from './slices/boxSlice'; export const store = configureStore({ reducer: { box: boxReducer, }, }); export type RootState = ReturnType; export type AppDispatch = typeof store.dispatch;