use-window-focus
v1.4.3
Published
React Hook to show if window is focused or not
Downloads
39,398
Maintainers
Readme
use-window-focus
React Hook to show if window is focused or not
Installation
yarn add use-window-focus
Usage
import React from 'react';
import useWindowFocus from 'use-window-focus';
export default () => {
const windowFocused = useWindowFocus();
return (
<div>
<span>{windowFocused ? 'Focused' : 'Not focused'}</span>
</div>
);
}
License
The package is available as open source under the terms of the MIT License.