Files
HKSingleParty/03_source/frontend/src/pages/auth/jwt/sign-in.tsx
2025-05-28 09:55:51 +08:00

18 lines
367 B
TypeScript

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