Skip to content

Instantly share code, notes, and snippets.

@patrickcze
Created March 27, 2021 21:10
Show Gist options
  • Save patrickcze/a99250cc0fb59ab5d61d48bb09fb123b to your computer and use it in GitHub Desktop.
Save patrickcze/a99250cc0fb59ab5d61d48bb09fb123b to your computer and use it in GitHub Desktop.
An example component using the useOnlineStatus hook
import React from "react";
import { useOnlineStatus } from "../../utilities/useOnlineStatus";
const Home: React.FC = () => {
const isOnline = useOnlineStatus();
return <div>I am {isOnline ? "online" : "offline"}!</div>;
};
export default Home;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment