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

REACT Reference: React Introduction

Quick reference for React Introduction.

Read time: 1 min • Words: 16
My Progress

REACT Reference — React Introduction

Quick summary of React Introduction with syntax and example.

Syntax

function Component(){ return ... }

Example

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