DEV Community

sandeepsamanth
sandeepsamanth

Posted on

react day 1

function Greeting() {
  return <h2>My First Component</h2>;
}

// arrow function also works
const Greeting = () => {
  return <h2>My First Component</h2>;
};
Enter fullscreen mode Exit fullscreen mode

starts with capital letter
must return JSX (html)
always close tag


Top comments (0)