Files
pn-new-crm/src/app/(dashboard)/[portSlug]/yachts/page.tsx

6 lines
126 B
TypeScript
Raw Normal View History

import { YachtList } from '@/components/yachts/yacht-list';
export default function YachtsPage() {
return <YachtList />;
}