React

Props

Definition

Short for properties — the mechanism for passing data from parent to child components in React. Props are read-only and flow downward (one-way data flow). Destructure props in function parameters for clean code.

Code Example

Jsx

Learn More

Related Terms