Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 851 Bytes

README.md

File metadata and controls

42 lines (30 loc) · 851 Bytes

React State Management Training

It covers three state management methods:

  • React setState
  • React + Redux
  • React + MobX

Training app

Actions:

  • Fetch talk list (async action)
  • Favourite talks (simple sync action)
  • Filter talks (selectors / computed props)

Example implementations

The master branch has not the full implementation but it has just the base code, you can develop the state managament specific code on top of that.

You can find the full implementation in the original branch.

setState

  cd app-setstate
  npm install

Redux

  cd app-redux
  npm install

MobX

  cd app-mobx
  npm install

Original work

Most of the work has been done by Infinum, you can find more info here. Thanks!