// Since React class components are just objects, we can use the `extends`
// keyword to make our component a child of the React base class
class App extends React.Component {
// We can create and initialize our App object on the React base class
// by using the constructor method
constructor(props) {
super(props);
this.someFunction = this.someFunction.bind(this);
}
}
One of the most common types of components you'll see are [[React Forms]].
Have anything to add? You can reach out to me by email or You can find more of my stuff on my links page.