Skip to content

Commit 138a9eb

Browse files
authored
Fix typo
1 parent 56c8610 commit 138a9eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/learn/manipulating-the-dom-with-refs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import { useRef } from 'react';
3131
const myRef = useRef(null);
3232
```
3333

34-
最後に、参照を得たい DOM ノートに対応する JSX タグの `ref` 属性にこの ref を渡します。
34+
最後に、参照を得たい DOM ノードに対応する JSX タグの `ref` 属性にこの ref を渡します。
3535

3636
```js
3737
<div ref={myRef}>

0 commit comments

Comments
 (0)