October 2019
Intermediate to advanced
426 pages
11h 49m
English
So, we are going to focus on the first convention—to set the initial state by defining a default value in the function arguments, as follows:
import { combineReducers } from 'redux'
function filter (state = 'all', action) {
function todos (state = [], action) {
const appReducer = combineReducers({ todos, filter })export default appReducer ...Read now
Unlock full access