Component
Component is the base class for the React components defined as JavaScript classes. Class components are still supported by React, but we donβt recommend using them in new code.
class Greeting extends Component {
render() {
return <h1>Hello, {this.props.name}!</h1>;
}
}