Skip to content

Commit 17e1570

Browse files
committed
strictmode-5%
1 parent 1160b1f commit 17e1570

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
@@ -5,7 +5,7 @@ title: <StrictMode>
55

66
<Intro>
77

8-
`<StrictMode>` lets you find common bugs in your components early during development.
8+
`<StrictMode>` আপনাকে ডেভেলপমেন্টের সময় আপনার কম্পোনেন্টগুলিতে সাধারণ বাগ সহজে খুঁজে পেতে সাহায্য করে।
99

1010

1111
```js
@@ -20,11 +20,11 @@ title: <StrictMode>
2020

2121
---
2222

23-
## Reference {/*reference*/}
23+
## রেফারেন্স {/*reference*/}
2424

2525
### `<StrictMode>` {/*strictmode*/}
2626

27-
Use `StrictMode` to enable additional development behaviors and warnings for the component tree inside:
27+
কম্পোনেন্ট ট্রির মধ্যে অতিরিক্ত ডেভেলপমেন্ট বিহেভিয়ার এবং সতর্কতা সক্রিয় করতে `StrictMode` ব্যবহার করুন:
2828

2929
```js
3030
import { StrictMode } from 'react';
@@ -38,13 +38,13 @@ root.render(
3838
);
3939
```
4040

41-
[See more examples below.](#usage)
41+
[নীচে আরও উদাহরণ দেখুন।](#usage)
4242

43-
Strict Mode enables the following development-only behaviors:
43+
স্ট্রিক্ট মোড নিম্নলিখিত development-only আচরণগুলি সক্রিয় করে:
4444

45-
- Your components will [re-render an extra time](#fixing-bugs-found-by-double-rendering-in-development) to find bugs caused by impure rendering.
46-
- Your components will [re-run Effects an extra time](#fixing-bugs-found-by-re-running-effects-in-development) to find bugs caused by missing Effect cleanup.
47-
- Your components will [be checked for usage of deprecated APIs.](#fixing-deprecation-warnings-enabled-by-strict-mode)
45+
- আপনার কম্পোনেন্টগুলি impure রেন্ডারিং এর কারণে সৃষ্ট বাগ খুঁজে পেতে [একটি অতিরিক্ত সময় রেন্ডার হবে](#fixing-bugs-found-by-double-rendering-in-development)
46+
- আপনার কম্পোনেন্টগুলি ইফেক্ট ক্লিনআপ মিস হবার কারণে সৃষ্ট বাগ খুঁজে পেতে [ইফেক্টগুলি একটি অতিরিক্ত সময় চালাবে](#fixing-bugs-found-by-re-running-effects-in-development)
47+
- আপনার কম্পোনেন্টগুলি [deprecated এপিআই ব্যবহারের জন্য পরীক্ষা করা হবে](#fixing-deprecation-warnings-enabled-by-strict-mode)
4848

4949
#### Props {/*props*/}
5050

0 commit comments

Comments
 (0)