Every class component must extend (i.e. inherit) from React.Component
Every class component must have a render method that returns the element(s) to render
To access props within a class component, use the this.props property
constructor method that needs access to props, define a props parameter.
super method and pass in the propsEX: