13 lines
274 B
TypeScript
13 lines
274 B
TypeScript
import { LoginForm } from "@/features/auth/components/login-form";
|
|
import { Helmet } from "react-helmet-async";
|
|
|
|
export default function LoginPage() {
|
|
return (
|
|
<>
|
|
<Helmet>
|
|
<title>Login - Docmost</title>
|
|
</Helmet>
|
|
<LoginForm />
|
|
</>
|
|
);
|
|
}
|