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

12 lines
149 B
Markdown
Raw Normal View History

2018-10-12 19:37:13 +00:00
---
title: Define a Redux Action
---
## Define a Redux Action
Here is how to declare a Redux Action.
```react.js
let action={
type: 'LOGIN'
}
```