Skip to content

Latest commit

 

History

History
516 lines (383 loc) · 30.8 KB

react-component-patterns.md

File metadata and controls

516 lines (383 loc) · 30.8 KB

React Component Patterns

Related topics:

  • Thinking in React: Articles discussing ways to think about React applications and component structure
  • React Implementation and Concepts: Includes articles that explain the differences between "components", "elements", and "instances"
  • React Component Composition: Articles explaining ways to compose components, including Higher-Order Components, Function-as-Child / "render props", and other functional composition approaches

Component Terms, Concepts, and Types

Component Definition Approach Comparisons

Component Rendering Logic

React Component Children

React Component Lifecycle

Component Communication

Component Categories

Wrapping Non-React Code

Modal Dialogs

Alternate Component Creation Approaches

Other Component Patterns