trevorr / react-scroll-manager

Scroll position manager for React applications
ISC License
36 stars 13 forks source link

fix: add explicit children prop typing #26

Open erictaylor opened 2 years ago

erictaylor commented 2 years ago

The new @types/react@^18 package ships with breaking changes. One such change is that children prop is no longer automatically included as part of the React.Component typing. Components need to opt-in to the children prop now.

This PR adds explicit children prop typing to the components the library exposes.

erictaylor commented 2 years ago

Pinging @trevorr for review.