Skip to content

Commit f56e060

Browse files
committed
Translate react-dom/static index
1 parent 1c933d0 commit f56e060

File tree

1 file changed

+8
-8
lines changed
  • src/content/reference/react-dom/static

1 file changed

+8
-8
lines changed
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
---
2-
title: Static React DOM APIs
2+
title: 静的サイト用 React DOM API
33
---
44

55
<Intro>
66

7-
The `react-dom/static` APIs let you generate static HTML for React components. They have limited functionality compared to the streaming APIs. A [framework](/learn/start-a-new-react-project#production-grade-react-frameworks) may call them for you. Most of your components don't need to import or use them.
7+
`react-dom/static` の API を用いて、React コンポーネントを静的な HTML にレンダーすることができます。これらの API はストリーミング API とよりも機能が限られています。[フレームワーク](/learn/start-a-new-react-project#production-grade-react-frameworks)がこれらあなたの代わりに呼び出すことがあります。ほとんどのコンポーネントは、これらをインポートしたり使用したりする必要はありません。
88

99
</Intro>
1010

1111
---
1212

13-
## Static APIs for Web Streams {/*static-apis-for-web-streams*/}
13+
## Web ストリーム用の静的 API {/*static-apis-for-web-streams*/}
1414

15-
These methods are only available in the environments with [Web Streams](https://developer.mozilla.org/en-US/docs/Web/API/Streams_API), which includes browsers, Deno, and some modern edge runtimes:
15+
以下のメソッドは、[Web Stream](https://developer.mozilla.org/en-US/docs/Web/API/Streams_API) が利用可能な環境でのみ使用できます。これには、ブラウザ、Deno、および一部のモダンなエッジランタイムが含まれます。
1616

17-
* [`prerender`](/reference/react-dom/static/prerender) renders a React tree to static HTML with a [Readable Web Stream.](https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream)
17+
* [`prerender`](/reference/react-dom/static/prerender) React ツリーを[読み取り可能な Web Stream](https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream) を用いて静的な HTML にレンダーします。
1818

1919

2020
---
2121

22-
## Static APIs for Node.js Streams {/*static-apis-for-nodejs-streams*/}
22+
## Node.js ストリーム用の静的 API {/*static-apis-for-nodejs-streams*/}
2323

24-
These methods are only available in the environments with [Node.js Streams](https://nodejs.org/api/stream.html):
24+
以下のメソッドは、[Node.js ストリーム](https://nodejs.org/api/stream.html)が利用可能な環境でのみ使用できます。
2525

26-
* [`prerenderToNodeStream`](/reference/react-dom/static/prerenderToNodeStream) renders a React tree to static HTML with a [Node.js Stream.](https://nodejs.org/api/stream.html)
26+
* [`prerenderToNodeStream`](/reference/react-dom/static/prerenderToNodeStream) React ツリーを [Node.js ストリーム](https://nodejs.org/api/stream.html)を用いて静的な HTML にレンダーします。
2727

2828

0 commit comments

Comments
 (0)