Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 670 Bytes

README.md

File metadata and controls

29 lines (24 loc) · 670 Bytes

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.