(auth: Auth)
| 70 | }; |
| 71 | |
| 72 | export const useSignInWithMicrosoft = (auth: Auth): SignInWithPopupHook => { |
| 73 | return useSignInWithOAuth(auth, 'microsoft.com'); |
| 74 | }; |
| 75 | |
| 76 | export const useSignInWithTwitter = (auth: Auth): SignInWithPopupHook => { |
| 77 | const createTwitterAuthProvider = useCallback( |
nothing calls this directly
no test coverage detected