1.0.0 • Published 6 years ago

@rehooks/document-visibility-hook v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

@rehooks/document-visibility-hook

React hook for subscribing to document visibility

Note: This is using the new React Hooks API Proposal which is subject to change until React 16.7 final.

You'll need to install react, react-dom, etc at ^16.7.0-alpha.0

Install

yarn add document-visibility-hook

Usage

import useDocumentVisibility from 'document-visibility-hook';

function MyComponent() {
  let visible = useDocumentVisibility();
  // true || false

  // ...
}