17 lines
377 B
TypeScript
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 />
|
|
</>
|
|
);
|
|
}
|