function Greeting() {
return <h2>My First Component</h2>;
}
// arrow function also works
const Greeting = () => {
return <h2>My First Component</h2>;
};
starts with capital letter
must return JSX (html)
always close tag
function Greeting() {
return <h2>My First Component</h2>;
}
// arrow function also works
const Greeting = () => {
return <h2>My First Component</h2>;
};
starts with capital letter
must return JSX (html)
always close tag
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)