0

Pass data from one class to another class that resides on the same level without navigating in react native.

Saad Arshad
  • 38
  • 1
  • 5

1 Answers1

1

Passing props or state between two components that are on the same level within your component tree is not possible in React. As a general rule of thumb in React: when two adjacent components need the same data, it is probably better to "lift" the property up a level in your hierarchy and pass the props to both components separately.

Thomas
  • 7,933
  • 4
  • 37
  • 45