August 2017
Beginner
374 pages
10h 41m
English
Let's start with the users reducer.
import { CREATE_USER } from '../actionTypes'
export default function usersReducer (state = [], action) {
const { type, ...user } = action
if (type === CREATE_USER) {
return [ ...state, user ]
}
return state }
Read now
Unlock full access