Function components have _____ object which contains values passed to the component via props/attributes, and they don't have render
or lifecycle methods.
This is the reason why they are called "functional stateless components".
Function component _____ (returns
or renders
?? ) a JSX string.
Class components have _____ and props
.
Class components have a _______ method which renders the JSX.
The state
is an _____ defined inside of the React class
component.
React class
components have React's built-in method _____ that we must use to update the state
.
React's built-in setState()
method triggers _______________________ when state is changed.
Only the class
component itself can define the _______ or change it's existing _______ through this.setState()
.