mirror of
https://github.com/makeplane/plane.git
synced 2026-07-14 06:25:58 +02:00
13 lines
284 B
TypeScript
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>
|
|
);
|