Files
plane/apps/web/ee/components/integrations/gitlab/authentication/root.tsx
2025-07-03 01:55:24 +05:30

13 lines
284 B
TypeScript

"use client";
import { FC } from "react";
// plane web components
import { ConnectOrganization } from "@/plane-web/components/integrations/gitlab";
// plane web hooks
export const UserAuthentication: FC = () => (
<div className="relative">
<ConnectOrganization />
</div>
);