@ajay_g/react-netinfo
v1.0.2
Published
A simple react hook to get network connectivity status
Downloads
11
Maintainers
Readme
React-Netinfo
A simple react hook to get network connectivity status
Install
npm install --save @ajay_g/react-netinfo
yarn add @ajay_g/react-netinfo
Usage
import React from "react";
import { useNetworkInfo } from "@ajay_g/react-netinfo";
const App = () => {
const isOffline = useNetworkInfo();
if (isOffline) {
return <div>Sorry, you are offline :(</div>;
}
return <div>You are online :)</div>;
};
License
MIT © Ajay
This hook is created using create-react-hook.