Fix onScroll → onWheel typo in common-props (#6364)

This commit is contained in:
Julian Weiss
2023-10-22 01:09:44 -04:00
committed by GitHub
parent 16f90a936a
commit a0cacd7d3a

View File

@@ -694,7 +694,7 @@ An event handler type for the `onWheel` event.
```js
<div
onScroll={e => console.log('onScroll')}
onWheel={e => console.log('onWheel')}
/>
```