(auth: Auth)
| 15 | import { SignInWithPopupHook } from './types'; |
| 16 | |
| 17 | export const useSignInWithApple = (auth: Auth): SignInWithPopupHook => { |
| 18 | return useSignInWithOAuth(auth, 'apple.com'); |
| 19 | }; |
| 20 | |
| 21 | export const useSignInWithFacebook = (auth: Auth): SignInWithPopupHook => { |
| 22 | const createFacebookAuthProvider = useCallback( |
nothing calls this directly
no test coverage detected