Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 311 Bytes

README.md

File metadata and controls

13 lines (10 loc) · 311 Bytes

Before using this, you should include the condition below wherever necessary and also import it into your component.

import useOnline from "./path/useOnline";

const isOnline = useOnline();

if (!isOnline) { return ( <>

Check your Internet Connection

</> ); }