0% found this document useful (0 votes)
8 views3 pages

Redux 1691616815

Uploaded by

iman sohail
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views3 pages

Redux 1691616815

Uploaded by

iman sohail
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

What is

Redux?

Rushikesh Thakare
Certainly! Here's a point-by-point explanation of Redux:

State Management:
Redux is a JavaScript library for
managing the state of applications,
particularly in front-end development.

Predictable State:
It provides a predictable way to
manage and update the state, making
applications more maintainable and
easier to reason about.

Centralized Store:
Redux uses a single centralized store to
hold the entire application's state.

Rushikesh Thakare
Unidirectional Data Flow:
Redux enforces a one-way data flow,
where data changes are initiated by
dispatching actions and flow through
reducers to update the state.
Actions:
Actions are plain JavaScript objects
that represent events or changes in
the application. They are dispatched to
trigger state updates.

Reducers:
Reducers are pure functions that handle the
state changes based on the dispatched
actions. They take the current state and an
action, and return a new state.
Rushikesh Thakare

You might also like