mirror of
https://github.com/docmost/docmost.git
synced 2025-11-16 13:01:10 +10:00
17 lines
396 B
TypeScript
17 lines
396 B
TypeScript
import { Helmet } from "react-helmet-async";
|
|
import { InviteSignUpForm } from "@/features/auth/components/invite-sign-up-form.tsx";
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
export default function InviteSignup() {
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<>
|
|
<Helmet>
|
|
<title>{t("Invitation signup")}</title>
|
|
</Helmet>
|
|
<InviteSignUpForm />
|
|
</>
|
|
);
|
|
}
|