Learn Before
Concept
The Data Flows Down React Js
No component should have knowledge of the states of other components. This is because a state can either be local or can be passed through props (as a parameter). This is commonly referred to as a "top-down" or "unidirectional" data flow.
<Title name={this.state.name} />
0
1
Updated 2023-02-17
Tags
JavaScript Programming Language
Object-Oriented Programming
Programming Language Paradigms
General programming languages
Computing Sciences