Shift 2017
Sample code for the "React State Management with Redux and MobX" workshop for Shift Split 2017.
It covers three state management methods:
- React setState
- React + Redux
- React + MobX
Example app
Tech conference app
Actions:
- Fetch talk list (async action)
- Favourite talks (simple sync action)
- Filter talks (selectors / computed props)
Example implementations
setState
cd app-setstate
npm install
Redux
cd app-redux
npm install
MobX
cd app-mobx
npm install