mirror of
https://github.com/docmost/docmost.git
synced 2026-08-28 01:07:08 +08:00
15 lines
353 B
TypeScript
15 lines
353 B
TypeScript
import { LoginForm } from "@/features/auth/components/login-form";
|
|
import { useTranslation } from "react-i18next";
|
|
import { DocumentTitle } from "@/components/ui/document-title.tsx";
|
|
|
|
export default function LoginPage() {
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<>
|
|
<DocumentTitle title={t("Login")} />
|
|
<LoginForm />
|
|
</>
|
|
);
|
|
}
|