import { configureStore } from '@reduxjs/toolkit'; import eventsReducer from './eventsSlice'; export const store = configureStore({ reducer: { events: eventsReducer, }, }); export type RootState = ReturnType; export type AppDispatch = typeof store.dispatch;