Skip to content

Commit d443745

Browse files
committed
translate reference and 2 items from parameters section
1 parent 1add3b6 commit d443745

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/content/reference/react-dom/server/renderToPipeableStream.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ const { pipe, abort } = renderToPipeableStream(reactNode, options?)
2222
2323
---
2424
25-
## Reference {/*reference*/}
25+
## রেফারেন্স {/*reference*/}
2626
2727
### `renderToPipeableStream(reactNode, options?)` {/*rendertopipeablestream*/}
2828
29-
Call `renderToPipeableStream` to render your React tree as HTML into a [Node.js Stream.](https://nodejs.org/api/stream.html#writable-streams)
29+
আপনার React tree কে একটি [Node.js Stream](https://nodejs.org/api/stream.html#writable-streams) এ HTML হিসেবে রেন্ডার করতে `renderToPipeableStream` কল করুন।
3030
3131
```js
3232
import { renderToPipeableStream } from 'react-dom/server';
@@ -40,16 +40,16 @@ const { pipe } = renderToPipeableStream(<App />, {
4040
});
4141
```
4242
43-
On the client, call [`hydrateRoot`](/reference/react-dom/client/hydrateRoot) to make the server-generated HTML interactive.
43+
Client-side এ, server-generated HTML কে ইন্টার‍্যাক্টিভ করতে [`hydrateRoot`](/reference/react-dom/client/hydrateRoot) কল করুন।
4444
45-
[See more examples below.](#usage)
45+
[নিচে আরও উদাহরণ দেখুন।](#usage)
4646
4747
#### Parameters {/*parameters*/}
4848
49-
* `reactNode`: A React node you want to render to HTML. For example, a JSX element like `<App />`. It is expected to represent the entire document, so the `App` component should render the `<html>` tag.
49+
* `reactNode`: একটি React node যেটিকে আপনি HTML এ রেন্ডার করতে চান। উদাহরণস্বরূপ, `<App />` এর মতো একটি JSX element । এটা এক্সপেক্টেড যে, এটি পুরো document কে ধারণ করবে, তাই `App` কম্পোনেটটির `<html>` ট্যাগ রেন্ডার করার কথা।
5050
51-
* **optional** `options`: An object with streaming options.
52-
* **optional** `bootstrapScriptContent`: If specified, this string will be placed in an inline `<script>` tag.
51+
* **optional** `options`: একটি object যাতে streaming options থাকবে।
52+
* **optional** `bootstrapScriptContent`: যদি প্রদান করা হয়, তাহলে এই string টি একটি inline `<script>` tag এ থাকবে।
5353
* **optional** `bootstrapScripts`: An array of string URLs for the `<script>` tags to emit on the page. Use this to include the `<script>` that calls [`hydrateRoot`.](/reference/react-dom/client/hydrateRoot) Omit it if you don't want to run React on the client at all.
5454
* **optional** `bootstrapModules`: Like `bootstrapScripts`, but emits [`<script type="module">`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules) instead.
5555
* **optional** `identifierPrefix`: A string prefix React uses for IDs generated by [`useId`.](/reference/react/useId) Useful to avoid conflicts when using multiple roots on the same page. Must be the same prefix as passed to [`hydrateRoot`.](/reference/react-dom/client/hydrateRoot#parameters)

0 commit comments

Comments
 (0)