1.1.2 • Published 7 years ago
@rehooks/online-status v1.1.2
@rehooks/online-status
React hook for subscribing to
online/offlineevents and thenavigator.onLineproperty to see current statusYou'll need to install
react,react-dom, etc at^16.8.4
Install
yarn add @rehooks/online-statusUsage
import useOnlineStatus from '@rehooks/online-status';
function MyComponent() {
const onlineStatus = useOnlineStatus();
return (
<div>
<h1>You are {onlineStatus ? "Online" : "Offline"}</h1>
</div>
);
}