25 lines
721 B
TypeScript
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>
|
|
);
|
|
}
|