Files
web/app/[lang]/(live)/(public)/hotelreservation/page.tsx
2024-07-10 11:31:45 +02:00

8 lines
229 B
TypeScript

import HotelCard from "@/components/HotelReservation/SelectHotel/HotelCard"
import { LangParams, PageArgs } from "@/types/params"
export default function HotelReservationPage({ params }: PageArgs<LangParams>) {
return null
}