VOOZH about

URL: https://www.geeksforgeeks.org/reactjs/lifting-state-up-in-reactjs/

⇱ Lifting State Up in ReactJS - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Lifting State Up in ReactJS

Last Updated : 25 Feb, 2026

Lifting state up in ReactJS is the process of moving shared state to a common parent so multiple child components can access, update, and stay synchronized with the same data efficiently.

  • Move shared state to the nearest common parent component.
  • Parent holds the state instead of duplicating it in child components.
  • Pass state and update functions to child components via props.
  • Ensures consistency, synchronization, and easier state management in React.

Purpose of Lifting State Up in React

Lifting state up in React is used to keep shared state centralized in a parent component, ensuring consistency, enabling communication between siblings, and making state management easier as the app grows.

  • Synchronization: Keeps multiple components in sync with shared state.
  • Sibling Communication: Allows siblings to share and update data via the parent.
  • Centralized State: Simplifies debugging, maintenance, and updates.
  • Consistency: Prevents state duplication and ensures a single source of truth.

Implementing Lifting State Up in React

Lifting state up involves a few simple steps:

  1. Identify the shared state: Determine which state values need to be accessed or modified by multiple components.
  2. Move the state to the common ancestor: Find the nearest parent component that can hold the state.
  3. Pass the state as props: The parent component will pass the shared state and any relevant handler functions (e.g., for updating the state) to its child components via props.
  4. Handle state updates: The child components will use the passed-down functions to update the parent component’s state.

Example 1: If we have 2 components in our App.

  • A -> B where, A is parent of B.
  • keeping the same data in both Component A and B might cause inconsistency of data. 

Example 2: If we have 3 components in our App.

 A
/ \
B C
  • Component B has some data that component C also needs.
  • Since components can only communicate with their parent or child, C cannot access B’s data directly.

Example: To create the React Application you can refer to Create a New React App.

Folder Structure:

👁 Image

Approach: To solve this, we will Lift the state of component B and component C to component A. Make A.js as our Main Parent by changing the path of App in the index.js file

Before:

import App from './App';

After:

import App from './A';

Filename- A.js:

Filename- B.js:

Filename- C.js:


Output: Now, component C can Access text in component B through component A.

👁 Image
Lifting State Up in ReactJS
Comment