August 2017
Beginner
374 pages
10h 41m
English
After defining our action types and action creator, we need to handle the action in a reducer:
import { LOGIN_SUCCESS } from '../actionTypes'
export default function sessionReducer (state = false, action) {
const { type, result } = action if (type === LOGIN_SUCCESS) { return result } return state}
Read now
Unlock full access