Duck
An example of /store/redux/app.js following re-duck style
Define `createReducer` helper
produce
is a function of immer
Declare initial state
Declare action types
prefix app_name/domain_namespace
for separating your action from 3rd parties actions such as connected-react-router, redux-saga when working with redux devtools
Declare action creators
Declare reducer
Declare selectors
createSelector
is a function of reselect
Last updated