How does Redux works and what is it ?
Sigiloso
Reducts is a state management library that holds the entire app state In a data store. Since React is uni directional the data flow is from parent to the child component so managing app state is a difficult task. Redux provides a data store, manipulated by actions dispatched with types, which check with reducers for the logic , manipulating the state and updating in the Data store of Redux which is then accessible to any component using the useSelector Hook (functional component).