Satyajit Roy
Satyajit Roy

Reputation: 547

How to get data of a state in one step above

I am a beginner and I am learning React JS. I am making a demo project. I need a help there.

In my app.js there is routes shop.js and review.js. The data and states is in shop.js. Now how can I pass some states data on review.js from shop.js?

Image

How can I do that?

Upvotes: 0

Views: 440

Answers (2)

Abdelaziz Alsabagh
Abdelaziz Alsabagh

Reputation: 300

It's recommended to lift the shared state up to their closest common ancestor (app.js). please check https://reactjs.org/docs/lifting-state-up.html

Upvotes: 2

Damian Busz
Damian Busz

Reputation: 1848

You could use Context

Context provides a way to pass data through the component tree without having to pass props down manually at every level.

In a typical React application, data is passed top-down (parent to child) via props, but such usage can be cumbersome for certain types of props (e.g. locale preference, UI theme) that are required by many components within an application. Context provides a way to share values like these between components without having to explicitly pass a prop through every level of the tree.

Upvotes: 1

Related Questions