Skip to content

Commit a09118b

Browse files
committed
strictmode-10%
1 parent 17e1570 commit a09118b

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

src/content/reference/react/StrictMode.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,24 +46,24 @@ root.render(
4646
- আপনার কম্পোনেন্টগুলি ইফেক্ট ক্লিনআপ মিস হবার কারণে সৃষ্ট বাগ খুঁজে পেতে [ইফেক্টগুলি একটি অতিরিক্ত সময় চালাবে](#fixing-bugs-found-by-re-running-effects-in-development)
4747
- আপনার কম্পোনেন্টগুলি [deprecated এপিআই ব্যবহারের জন্য পরীক্ষা করা হবে](#fixing-deprecation-warnings-enabled-by-strict-mode)
4848

49-
#### Props {/*props*/}
49+
#### প্রপ্স {/*props*/}
5050

51-
`StrictMode` accepts no props.
51+
`StrictMode` কোনো প্রপ গ্রহণ করে না।
5252

53-
#### Caveats {/*caveats*/}
53+
#### সাবধানতা {/*caveats*/}
5454

55-
* There is no way to opt out of Strict Mode inside a tree wrapped in `<StrictMode>`. This gives you confidence that all components inside `<StrictMode>` are checked. If two teams working on a product disagree whether they find the checks valuable, they need to either reach consensus or move `<StrictMode>` down in the tree.
55+
* `<StrictMode>`-এ মোড়ানো একটি ট্রিতে স্ট্রিক্ট মোড থেকে বের হওয়ার কোনো উপায় নেই। এটি আপনাকে এই আশ্বাস দেয় যে `<StrictMode>`-এর মধ্যে সমস্ত কম্পোনেন্ট পরীক্ষিত হয়েছে। যদি দুটি টিম যারা একটি পণ্য নিয়ে কাজ করছে তারা এই চেকগুলির দরকার নিয়ে একমত না হয়, তাদের হয় সমঝোতায় পৌঁছাতে হবে অথবা ট্রিতে `<StrictMode>` নিচে সরিয়ে নিতে হবে।
5656

5757
---
5858

59-
## Usage {/*usage*/}
59+
## ব্যবহার {/*usage*/}
6060

61-
### Enabling Strict Mode for entire app {/*enabling-strict-mode-for-entire-app*/}
61+
### পুরো অ্যাপের জন্য স্ট্রিক্ট মোড সক্রিয় করা {/*enabling-strict-mode-for-entire-app*/}
6262

63-
Strict Mode enables extra development-only checks for the entire component tree inside the `<StrictMode>` component. These checks help you find common bugs in your components early in the development process.
63+
`<StrictMode>` কম্পোনেন্টের মধ্যে থাকা পুরো কম্পোনেন্ট ট্রির জন্য স্ট্রিক্ট মোড অতিরিক্ত development-only চেক সক্রিয় করে। এই চেকগুলি আপনাকে ডেভেলপমেন্ট প্রক্রিয়ার শুরুতেই আপনার কম্পোনেন্টগুলিতে সাধারণ বাগগুলি খুঁজে পেতে সাহায্য করে।
6464

6565

66-
To enable Strict Mode for your entire app, wrap your root component with `<StrictMode>` when you render it:
66+
আপনার পুরো অ্যাপের জন্য স্ট্রিক্ট মোড সক্রিয় করতে, এটি রেন্ডার করার সময় আপনার রুট কম্পোনেন্টকে `<StrictMode>` দিয়ে মোড়ান:
6767

6868
```js {6,8}
6969
import { StrictMode } from 'react';

0 commit comments

Comments
 (0)