Skip to content

Instantly share code, notes, and snippets.

View Bartmr's full-sized avatar

Bartolomeu Rodrigues Bartmr

View GitHub Profile
@Bartmr
Bartmr / auth.tsx
Last active February 17, 2023 14:18
Firebase Auth with React
firebase.auth.onAuthStateChanged((user) => {
if(user) {
setSession({
data: {
user
},
});
} else {
setSession({
data: null,