A CodeRoad tutorial for learning Redux.
CodeRoad is an open-sourced interactive tutorial platform for the Atom Editor. Learn more at CodeRoad.io.
-
install the tutorial package
npm install --save coderoad-redux-js
-
install and run the atom-coderoad plugin
Events that change the data.
const action = { type: 'ACTION_NAME' };
const actionName = () => ({ type: 'ACTION_NAME' });
const ACTION_NAME = 'ACTION_NAME'