Self review: Managing state in React
True or false? When lifting state up, you need to move the useState from a child component to a parent component.
True.
False.
If the state variable holds an array or a string value, once you pass that state via props from a parent to a child, y...