In React, anything is a component, in fact! Even basic HTML tags are components since they are included by default and built-in.
Let’s look at an illustration:
import React from 'react'
import ReactDOM from 'react-dom'
ReactDOM.render(<h1>I'm a component!</h1>,
document.getElementById('myapp'))