"use client" import { useSyncExternalStore } from "react" function subscribe(callback: () => void) { window.addEventListener("online", callback) window.addEventListener("offline", callback) return () => { window.removeEventListener("online", callback) window.removeEventListener("offline", callback) } } function getSnapshot() { return navigator.onLine } function getServerSnapshot() { return true } export function useNetworkStatus() { const isOnline = useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) return { isOnline } }