18 lines
402 B
TypeScript
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 />
|
|
</>
|
|
);
|
|
}
|