Files
HKSingleParty/03_source/frontend/src/pages/dashboard/blank/index.tsx
2025-05-28 09:55:51 +08:00

18 lines
369 B
TypeScript

import { CONFIG } from 'src/global-config';
import { BlankView } from 'src/sections/blank/view';
// ----------------------------------------------------------------------
const metadata = { title: `Blank | Dashboard - ${CONFIG.appName}` };
export default function Page() {
return (
<>
<title>{metadata.title}</title>
<BlankView />
</>
);
}