Skip to content

Instantly share code, notes, and snippets.

@zackbraksa
Last active March 29, 2021 13:24
Show Gist options
  • Save zackbraksa/972f7a3c9be592a085b64684b17b480d to your computer and use it in GitHub Desktop.
Save zackbraksa/972f7a3c9be592a085b64684b17b480d to your computer and use it in GitHub Desktop.
React.useEffect(() => {
return auth().onAuthStateChanged((user) => {
if (user) {
setUser(user);
} else {
setUser(null);
}
});
}, []);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment