Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/4-advanced/04-react/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ export default function App() {
}
```

<ViewSource url={import.meta.url} path="_samples/table" />
<ViewSource url={import.meta.url} path="_samples/student-data" />

</Answer>

Expand Down Expand Up @@ -634,7 +634,7 @@ export default function App() {
}
```

<ViewSource url={import.meta.url} path="_samples/react-fixed-input" />
<ViewSource url={import.meta.url} path="_samples/react-input" />

`onChange`属性には、要素のテキストが変更された際に発生するイベントのイベントハンドラを指定します。Reactの`onChange`属性は、DOMの[`change`イベント](https://developer.mozilla.org/ja/docs/Web/API/HTMLElement/change_event)ハンドラと同様に記述することができ、第1引数には[`Event`オブジェクト](https://developer.mozilla.org/ja/docs/Web/API/Event)に似た値が与えられます。

Expand Down