Files
HKSingleParty/03_source/frontend/src/pages/party-user-auth/jwt/sign-up.tsx
louiscklaw 13c3399a6e update,
2025-06-18 13:42:35 +08:00

17 lines
377 B
TypeScript

import { JwtSignUpView } from 'src/auth/view/party-user-jwt';
import { CONFIG } from 'src/global-config';
// ----------------------------------------------------------------------
const metadata = { title: `Sign up | Jwt - ${CONFIG.appName}` };
export default function Page() {
return (
<>
<title>{metadata.title}</title>
<JwtSignUpView />
</>
);
}