Files
zitadel/apps/login/ui/IdentityProviders.tsx

10 lines
164 B
TypeScript
Raw Normal View History

2023-04-13 13:26:02 +02:00
import { SignInWithGoogle } from "@zitadel/react";
2023-04-04 15:23:14 +02:00
export default function IdentityProviders() {
return (
<div>
<SignInWithGoogle />
</div>
);
}