Skip to content

Instantly share code, notes, and snippets.

@kellenmace
Last active November 9, 2020 21:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kellenmace/50d45471d3c874396011598d9260e4c2 to your computer and use it in GitHub Desktop.
Save kellenmace/50d45471d3c874396011598d9260e4c2 to your computer and use it in GitHub Desktop.
Example of using useHasMounted() hook
function Greeting() {
const hasMounted = useHasMounted();
const username = hasMounted ? localStorage.getItem("username") : null;
return <p>Welcome back {username}!</p>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment