UNPKG

cra-template-redux

Version:

The official Redux+JS template for Create React App.

9 lines (7 loc) 204 B
import { configureStore } from '@reduxjs/toolkit'; import counterReducer from '../features/counter/counterSlice'; export const store = configureStore({ reducer: { counter: counterReducer, }, });