/fluffy-react

A high level intro to ReactJS and state management

Primary LanguageJavaScript

Fluffy React

This application is used as the demo for this presentation for entry-level React users. It is split up into three sub-apps:

  1. Basic react component
  2. Multiple react components with coupled state
  3. Multiple react components with coupled state managed by Redux

Running it

First, install dependencies through

npm install

or

yarn

Then to start up the first app for the first scenario, run:

npm run start:one

or

yarn start:one

and the second and third sub-apps can be started with a similar script just replacing :one with :two or :three.