Monitors changes in page visibility state.
https://developer.mozilla.org/en-US/docs/Web/API/Page_Visibility_API
true if visible, false if hidden
Check if the page is visible.
import { useIsPageVisible } from "@trashpanda001/helpers/react"function Component() { const isVisible = useIsPageVisible() return <div>{isVisible ? "Visible" : "Hidden"}</div>} Copy
import { useIsPageVisible } from "@trashpanda001/helpers/react"function Component() { const isVisible = useIsPageVisible() return <div>{isVisible ? "Visible" : "Hidden"}</div>}
Monitors changes in page visibility state.
https://developer.mozilla.org/en-US/docs/Web/API/Page_Visibility_API