check-connection
v0.1.2
Published
react hook to check connection status
Downloads
8
Readme
check-connection
react hook to check connection status
Setup 🛠
yarn add check-connection
or
npm install check-connection
Usage 🤓
import useConnectionStatus from "check-connection";
function App() {
return (
<div className="App">
<h1>Hello you're {useConnectionStatus() ? "online" : "offline"}</h1>
</div>
);
}