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

18 lines
402 B
TypeScript

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