React — React Components
React components are the building blocks of a React application. They can be either functional or class-based.
Components let you split the UI into independent, reusable pieces, and think about each piece in isolation.
function Greeting() {
return <h2>Hello, this is a functional component!</h2>;
}