notes on software

// 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);
  }
}

Types of components

One of the most common types of components you'll see are [[React Forms]].

Links to this note


Have anything to add? You can reach out to me by email or You can find more of my stuff on my links page.

React Core Concepts