Files
freeCodeCamp/guide/arabic/certifications/front-end-libraries/redux/define-an-action-creator/index.md

27 lines
509 B
Markdown
Raw Normal View History

---
title: Define an Action Creator
localeTitle: قم بتعريف عمل الخالق
---
## قم بتعريف عمل الخالق
### تلميح 1
يتم تعريف الدالة باستخدام بناء الجملة التالي:
`functionName(){
console.log("Do something");
}
`
حيث يمكن تغيير console.log حسب الحاجة.
### تلميح 2
يتم إرجاع القيمة باستخدام `return` الكلمة
### حل
`function actionCreator(){
return action;
}
`