props contains information set by the parent component (although defaults can be set) and should not be changed.
state contains “private” information for the component to initialise, change, and use on it’s own.
props are a way of passing data from parent to child. ... State is reserved only...