What is unidirectional data flow in React?
Props and State
Audio flashcard · 0:14Nortren·
What is unidirectional data flow in React?
0:14
Unidirectional data flow means data moves in a single direction: from parent components down to children through props. Children communicate upward by calling callback functions passed as props. This makes data changes predictable and easier to debug.