DEV Community

Discussion on: Welcome Thread - v62

 
tobilastik profile image
Raji Oluwatobiloba

You can store that variable in state and pass it as props to whatever component you need it(you'll need to read more on passing props) React official documentation is the best place to start.

Moreover, you'll reach a stage where passing this supposed variable from one component to another will be a pain in the ass, then you should use a state management, the popular one is redux. You'll need to go learn redux too. But for now, since you're just starting to learn react, try learning how to pass state as a props from one component to another.

Let me know if you need more clarification.