# use-online-hook

# How to install?
```Bash
npm install use-online-hook
```
# How to use?
```JavaScript

import useOnline from 'use-online-hook'

const App = () => {
  const isOnline = useOnline();
  
  //... rest of the code
}
```