Skip to content

React: State Management

drewjhart edited this page Jul 13, 2022 · 5 revisions

Wiki shell for react state resources!

How to manage state in React apps - freeCodeCamp article

Stateful and Stateless Components:

The RightOn host app has been written to clearly separate stateful and stateless components. State is centralized in higher-level, container components where data is handled and manipulated. This data is passed down to stateless, UI components through props. This separation allows for a simplified handling of the API data as well as simpler and more flexible UI components. The following resources provide more information on this separation: