Files
zitadel/apps/login/ui/IdentityProviders.tsx
2023-04-14 17:22:59 +02:00

11 lines
236 B
TypeScript

import { SignInWithGoogle, SignInWithGitlab } from "@zitadel/react";
export default function IdentityProviders() {
return (
<div className="space-y-4 py-4">
<SignInWithGoogle />
<SignInWithGitlab />
</div>
);
}