Immaniġġar tal-istatu f'React Native (bħal f'React) jvarja minn istatu lokali tal-komponent (useState) sa istatu kondivist/globali permezz ta' Context, jew libreriji bħal Redux, Zustand, u oħrajn. L-għarfien tal-għażliet u meta tuża kull waħda huwa importanti meta l-apps jikbru.
Istatu lokali u tgħolli l-istatu
useState → local component state (simple, for one component)
LIFTING STATE UP → move shared state to a common parent, pass down via props
→ works for moderate sharing, but "PROP DRILLING" (passing through many layers) is painful
