reactjs-hooks
v1.0.1
Published
A react hook for checking User connected to Internet or not return boolean value
Downloads
1
Readme
A react hook for watching device connectivity status
Install
npm i reactjs-hooks
//or
yarn add reactjs-hooks
Usage
import { useOnline } from 'reactjs-hooks';
const ComponentName = ()=>{
const isOnline = useOnline();
if (!isOnline) {
return (
<>
<h1>You Are Offline, Check Internet Connection </h1>
</>
);
}
}