mirror of
https://github.com/docmost/docmost.git
synced 2026-08-21 14:41:36 +10:00
16 lines
364 B
TypeScript
16 lines
364 B
TypeScript
import { CloudLoginForm } from "@/ee/components/cloud-login-form.tsx";
|
|
import { useTranslation } from "react-i18next";
|
|
import { DocumentTitle } from "@/components/ui/document-title.tsx";
|
|
|
|
export default function CloudLogin() {
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<>
|
|
<DocumentTitle title={t("Login")} />
|
|
|
|
<CloudLoginForm />
|
|
</>
|
|
);
|
|
}
|