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

14 lines
253 B
Markdown
Raw Normal View History

2018-10-12 20:00:59 +00:00
---
title: Define a Redux Action
localeTitle: Определение действия Redux
---
## Определение действия Redux
Вот как объявить действие Redux.
```react.js
let action={
type: 'LOGIN'
}
```