UNPKG

use-online-hook

Version:

a simple hook to check whether the user is online or not :)

17 lines (13 loc) 232 B
# 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 } ```