π₯οΈInstallation
npm i no-reducer
To use no-reducer, you just need to do a simple installation by importing no-reducer
on the combineReducers
page. You can give any name you like to the store object.
For instance, I named it ds when I used it with Redux's combineReducers
import { combineReducers } from "redux";
import { reducer } from "no-reducer";
export default combineReducers({
ds: reducer
});
Last updated