Skip to main content

useOnline

Definition

  • useOnline is a hook which return a status whether you are connected to the internet or not.

Usage Example

import { useOnline } from '@utiliser/react-hooks'

const App = () => {
const { isOnline } = useOnline()

return <div>{isOnline ? <p>Online</p> : <p>Offline</p>}</div>
}

export default App