react-hook-on-screen
Version:
A simple and performatic react hook to trigger a callback when a component become visible on the screen
22 lines (15 loc) • 459 B
Markdown
A simple and performatic react hook that returns a true boolean value when a component become visible on the screen
```
import { createRef, useEffect } from 'react'
import useOnScreen from 'react-hook-on-screen'
const ref = createRef<HTMLDivElement>()
const isVisible = useOnScreen(ref)
useEffect(() => {
console.log('the div is visible?', isVisible)
}, [isVisible])
<div ref={ref}>
react-hook-on-screen
</div>
```