mirror of
https://github.com/docmost/docmost.git
synced 2026-08-28 01:07:08 +08:00
12 lines
332 B
TypeScript
12 lines
332 B
TypeScript
import { ForgotPasswordForm } from "@/features/auth/components/forgot-password-form";
|
|
import { DocumentTitle } from "@/components/ui/document-title.tsx";
|
|
|
|
export default function ForgotPassword() {
|
|
return (
|
|
<>
|
|
<DocumentTitle title="Forgot Password" />
|
|
<ForgotPasswordForm />
|
|
</>
|
|
);
|
|
}
|