Knowledge check: State or stateless - React Basic
What is a stateless component?
A component that doesn’t track its parent’s state.
A component that doesn’t track its own state.
A stateful component must have a props object.
False
True
To turn a stateless component into a stateful componen...