mirror of
https://github.com/docmost/docmost.git
synced 2026-08-28 09:17:06 +08:00
15 lines
395 B
TypeScript
15 lines
395 B
TypeScript
import { InviteSignUpForm } from "@/features/auth/components/invite-sign-up-form.tsx";
|
|
import { useTranslation } from "react-i18next";
|
|
import { DocumentTitle } from "@/components/ui/document-title.tsx";
|
|
|
|
export default function InviteSignup() {
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<>
|
|
<DocumentTitle title={t("Invitation Signup")} />
|
|
<InviteSignUpForm />
|
|
</>
|
|
);
|
|
}
|