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

14 lines
179 B
Markdown

---
title: Define a Redux Action
localeTitle: 定义Redux动作
---
## 定义Redux动作
以下是如何声明Redux Action。
```react.js
let action={
type: 'LOGIN'
}
```