11 lines
265 B
TypeScript
11 lines
265 B
TypeScript
import { LangParams, PageArgs } from "@/types/params"
|
|
|
|
export default function HotelReservationPage({ params }: PageArgs<LangParams>) {
|
|
return (
|
|
<div>
|
|
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Beatae,
|
|
praesentium?
|
|
</div>
|
|
)
|
|
}
|