useOnlineState
Track network status of the user.
Usage Example
1import { useOnlineState } from '@danixsoft/hooks';
2
3function Example() {
4 const isOnline = useOnlineState();
5
6 return <div>You are {isOnline ? 'online' : 'offline'}</div>;
7}Track network status of the user.
1import { useOnlineState } from '@danixsoft/hooks';
2
3function Example() {
4 const isOnline = useOnlineState();
5
6 return <div>You are {isOnline ? 'online' : 'offline'}</div>;
7}