You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
251 B

2 years ago
  1. import { useWindowScroll } from './useWindowScroll.js'
  2. function App () {
  3. const [y] = useWindowScroll()
  4. return (
  5. <div style={{height: '12000px'}}>
  6. {y}
  7. {console.log(y)}
  8. </div>
  9. )
  10. }
  11. export default App