Files
HKSingleParty/03_source/frontend/src/pages/pricing/index.tsx
louiscklaw b7cd25b614 build ok,
2025-06-15 11:28:24 +08:00

17 lines
364 B
TypeScript

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