What is Lifting State Up in React?
- A technique for managing component state in a centralized location
- A technique for passing data down from parent components to child components
- A technique for passing data up from child components to parent components
- A technique for styling components using CSS-in-JS
Lifting State Up is a technique in React for passing data up from child components to parent components. This is useful when multiple components need to share the same state or when a child component needs to update the state of a parent component.
Loading...