Skip to content

ShMcK/coderoad-redux-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CodeRoad Redux JS Tutorial

A CodeRoad tutorial for learning Redux.

CodeRoad

CodeRoad is an open-sourced interactive tutorial platform for the Atom Editor. Learn more at CodeRoad.io.

Setup

  • install the tutorial package

    npm install --save coderoad-redux-js

  • install and run the atom-coderoad plugin

Outline

Actions

Events that change the data.

1. Actions
const action = { type: 'ACTION_NAME' };
2. Action Creators
const actionName = () => ({ type: 'ACTION_NAME' });
3. Action Types
const ACTION_NAME = 'ACTION_NAME'

About

CodeRoad tutorial for learning Redux

Resources

Stars

Watchers

Forks

Packages

No packages published