August 2017
Beginner
374 pages
10h 41m
English
Next, we define action creators for these two action types:
import { UNDO, REDO } from '../actionTypes'
export const undo = () => { return { type: UNDO }}
export const redo = () => { return { type: REDO }}
export * from './undo'
Read now
Unlock full access