()
| 48 | }; |
| 49 | |
| 50 | const SignInForm = () => { |
| 51 | const auth = useAuth(); |
| 52 | |
| 53 | return ( |
| 54 | <CardSection title="Sign-in form"> |
| 55 | <WideButton label="Sign in with Google" onClick={() => signIn(auth)} /> |
| 56 | </CardSection> |
| 57 | ); |
| 58 | }; |
| 59 | |
| 60 | export const Auth = () => { |
| 61 | const { status, data: signinResult } = useSigninCheck(); |