Files
freeCodeCamp/guide/english/certifications/front-end-libraries/redux/dispatch-an-action-event/index.md
2018-10-16 21:32:40 +05:30

11 lines
245 B
Markdown

---
title: Dispatch an Action Event
---
## Dispatch an Action Event
Dispatch the LOGIN action to the Redux store by calling the dispatch method, and pass in the action created by `loginAction()`.
```react.js
store.dispatch(loginAction());
```