mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 12:03:17 +00:00
11 lines
236 B
TypeScript
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>
|
|
);
|
|
}
|