Skip to content

Commit 1d0d10e

Browse files
committed
feat: ✨ Translate Challenge 3 of 4 (hint)
1 parent c272431 commit 1d0d10e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/content/learn/extracting-state-logic-into-a-reducer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1879,7 +1879,7 @@ case 'changed_selection': {
18791879
18801880
<Hint>
18811881
1882-
You can structure your state like this:
1882+
আপনার স্টেটের গঠনকে এমন করতে পারেন:
18831883
18841884
```js
18851885
export const initialState = {
@@ -1891,7 +1891,7 @@ export const initialState = {
18911891
};
18921892
```
18931893
1894-
The `[key]: value` [computed property](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Object_initializer#computed_property_names) syntax can help you update the `messages` object:
1894+
এখানের `[key]: value` [computed property](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Object_initializer#computed_property_names) সিনট্যাক্স আপনাকে `messages` অবজেক্টকে আপডেট করতে সাহায্য করতে পারে:
18951895
18961896
```js
18971897
{

0 commit comments

Comments
 (0)