Skip to content
This repository has been archived by the owner on Jul 12, 2019. It is now read-only.

infinum/shift-2017

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 

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