npm i reactjs-hooks
//or
yarn add reactjs-hooks
import { useOnline } from 'reactjs-hooks';
const ComponentName = ()=>{
const isOnline = useOnline();
if (!isOnline) {
return (
<>
<h1>You Are Offline, Check Internet Connection </h1>
</>
);
}
}