vimwiki

React component

A react component is a function that returns JSX.

Always capitalize the function name.

function Greeting() {
  return <h1>Hello there</h1>
}

// use it:

<Greeting />