Describe data flow in React?
- Unidirectional data flow
- Bidirectional data flow
- Multidirectional data flow
Data flow in React is unidirectional, meaning that data flows in a single direction from the parent component to the child component. This helps ensure that the application state is predictable and easier to manage.
Loading...