How to Group State and Pass it Down to Children with React Hooks
Sometimes we have a React component that needs to pass many state values to its parent. Sometimes we even have grandchildren or props several generations deep that need to set state to their grandparent. See this example: Instead of passing all of that state as props to the child component, we can actually just save …
How to Group State and Pass it Down to Children with React Hooks Read More »