0 votes
in ReactJS by
What is an action in Redux?

1 Answer

0 votes
by
It is a function which returns an action object. The action-type and the action data are always stored in the action object. Actions can send data between the Store and the software application. All information retrieved by the Store is produced by the actions.
...