REACT Reference: React Introduction
Quick reference for React Introduction.
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>;
}