You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/learn/extracting-state-logic-into-a-reducer.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -252,7 +252,7 @@ function handleDeleteTask(taskId) {
252
252
}
253
253
```
254
254
255
-
The object you pass to `dispatch` is called an "action":
255
+
আপনি `dispatch` এর কাছে যে object টি pass করেন, তাকে একটি "action" বলে:
256
256
257
257
```js {3-7}
258
258
functionhandleDeleteTask(taskId) {
@@ -266,7 +266,7 @@ function handleDeleteTask(taskId) {
266
266
}
267
267
```
268
268
269
-
It is a regular JavaScript object. You decide what to put in it, but generally it should contain the minimal information about _what happened_. (You will add the`dispatch`function itself in a later step.)
269
+
এটি একটি সাধারণ JavaScript object। এর মধ্যে কী রাখতে হবে সেটা আপনার উপর, তবে স্বাভাবিকভাবে এর মধ্যে _কী ঘটলো(what happened)_ সে ব্যপারে ন্যূনতম ইনফর্মেশন থাকতে হবে। (আর আপনি`dispatch`ফাংশনটিকেই একটি পরবর্তী ধাপে যুক্ত করবেন।)
0 commit comments