/redux-examples

Basic walkthrough of redux and why

Primary LanguageJavaScript

Redux Examples

Basic example of Redux usage and why we use it for team walkthrough. This project was bootstrapped with Create React App.

Usage

This project has stepped branches so you can see the reasoning and thought process behind incrementally integrating redux into your appplication.

Install

> npm install

Run App

> npm start

01 React State

A common function of our React components and applications is basic state management. Here we see in the Counter Component basic state management with the useState hook to maintain the counter count.