DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

REACT Reference: Props

Quick reference for Props.

Read time: 1 min Words: 14
My Progress

REACT Reference — Props

Quick summary of Props with syntax and example.

Syntax

function Component(){ return ... }

Example

export default function App(){
  return <h1>Hello React</h1>;
}