Skip to main content

useOnline

Detect whether the network is online.

API

function useOnline(): boolean;

Example

The network is: online
import React from "react";
import { useOnline } from "@lilib/hooks";

function Example() {
const online = useOnline();
return <>The network is: {online ? "online" : "offline"}</>;
}

export default Example;