freeCodeCamp/guide/english/certifications/front-end-libraries/redux/define-a-redux-action/index.md

12 lines
149 B
Markdown

---
title: Define a Redux Action
---
## Define a Redux Action
Here is how to declare a Redux Action.
```react.js
let action={
type: 'LOGIN'
}
```