adspace


What is flux in react.js?

Answer Posted / Anoo Sonker

Flux is a design pattern for managing data flow in React applications. It helps to centralize the control of data and state, making it easier to manage complex applications with multiple components.nnIn Flux, actions are sent from components to a central dispatcher, which in turn updates stores that hold application state. Stores then notify components when their state changes, causing them to re-render.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to use events in reactjs? Give an example of using events?

564


How would you create higher order components (hocs) in react.js?

448