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

REACT Reference: JSX

Quick reference for JSX.

Read time: 1 min Words: 14
My Progress

REACT Reference — JSX

Quick summary of JSX with syntax and example.

Syntax

function Component(){ return ... }

Example

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