()
| 8 | const NavBar = () => { |
| 9 | const [user] = useAuthState(auth); |
| 10 | |
| 11 | const googleSignIn = () => { |
| 12 | const provider = new GoogleAuthProvider(); |
| 13 | signInWithPopup(auth, provider); |
| 14 | }; |
| 15 | |
| 16 | const signOut = () => { |
nothing calls this directly
no outgoing calls
no test coverage detected