August 2017
Beginner
374 pages
10h 41m
English
With webpack and Babel, you can import/export action creators the same way as action types. Perform the following steps:
import { CREATE_POST } from './actionTypes'
export const createPost = (user, text) => { return { type: CREATE_POST, user, text }}
import { createPost } from './actions'console.log(createPost('dan', 'New post'))
Read now
Unlock full access