Files
HKSingleParty/03_source/frontend/src/sections/tour/view/tour-create-view.tsx
louiscklaw b7cd25b614 build ok,
2025-06-15 11:28:24 +08:00

25 lines
721 B
TypeScript

import { CustomBreadcrumbs } from 'src/components/custom-breadcrumbs';
import { DashboardContent } from 'src/layouts/dashboard';
import { paths } from 'src/routes/paths';
import { TourNewEditForm } from '../tour-new-edit-form';
// ----------------------------------------------------------------------
export function TourCreateView() {
return (
<DashboardContent>
<CustomBreadcrumbs
heading="Create a new tour"
links={[
{ name: 'Dashboard', href: paths.dashboard.root },
{ name: 'Tour', href: paths.dashboard.tour.root },
{ name: 'New tour' },
]}
sx={{ mb: { xs: 3, md: 5 } }}
/>
<TourNewEditForm />
</DashboardContent>
);
}