UNPKG

@selemondev/create-react-next

Version:

The Next Generation React Scaffolding Tool ✨

13 lines (9 loc) 309 B
import { configureStore } from '@reduxjs/toolkit' import counterReducer from "../features/counter/counterSlice" export const store = configureStore({ reducer: { counter: counterReducer, }, }) export type RootState = ReturnType<typeof store.getState> export type AppDispatch = typeof store.dispatch