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

11 lines
236 B
TypeScript
Raw Normal View History

2023-04-14 17:22:59 +02:00
import { SignInWithGoogle, SignInWithGitlab } from "@zitadel/react";
2023-04-04 15:23:14 +02:00
export default function IdentityProviders() {
return (
2023-04-14 17:22:59 +02:00
<div className="space-y-4 py-4">
2023-04-04 15:23:14 +02:00
<SignInWithGoogle />
2023-04-14 17:22:59 +02:00
<SignInWithGitlab />
2023-04-04 15:23:14 +02:00
</div>
);
}