REACT Reference: Components
Quick reference for Components.
REACT Reference — Components
Quick summary of Components with syntax and example.
Syntax
function Component(){ return ... }
Example
export default function App(){
return <h1>Hello React</h1>;
}