mirror of
https://github.com/streamich/react-use.git
synced 2025-12-08 18:02:14 +00:00
404 B
404 B
useNetwork
React sensor hook that tracks connected hardware devices. Returns:
{
"online": true,
"since": "2018-10-27T08:59:05.562Z",
"downlink": 10,
"effectiveType": "4g",
"rtt": 50
}
Usage
import {useNetwork} from 'react-use';
const Demo = () => {
const state = useNetwork();
return (
<pre>
{JSON.stringify(state, null, 2)}
</pre>
);
};