Skip to content

Commit 8c6c2ef

Browse files
committed
コードサンプルについてはコメントも含め翻訳しないため、修正
1 parent 885ee5a commit 8c6c2ef

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/content/reference/react/useSyncExternalStore.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -112,11 +112,11 @@ export default function TodosApp() {
112112
```
113113
114114
```js todoStore.js
115-
// これはサードパーティのストアの例です。
116-
// React と統合する必要があるかもしれません。
115+
// This is an example of a third-party store
116+
// that you might need to integrate with React.
117117

118-
// アプリが完全に React でビルドされている場合は、
119-
// 代わりに React state を使用することをお勧めします。
118+
// If your app is fully built with React,
119+
// we recommend using React state instead.
120120

121121
let nextId = 0;
122122
let todos = [{ id: nextId++, text: 'Todo #1' }];

0 commit comments

Comments
 (0)