This application is used as the demo for this presentation for entry-level React users. It is split up into three sub-apps:
- Basic react component
- Multiple react components with coupled state
- Multiple react components with coupled state managed by Redux
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
.