It covers three state management methods:
- React setState
- React + Redux
- React + MobX
Actions:
- Fetch talk list (async action)
- Favourite talks (simple sync action)
- Filter talks (selectors / computed props)
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.
cd app-setstate
npm install
cd app-redux
npm install
cd app-mobx
npm install
Most of the work has been done by Infinum, you can find more info here. Thanks!