10 lines
179 B
TypeScript
10 lines
179 B
TypeScript
import HotelCard from "@/components/HotelReservation/SelectHotel/HotelCard"
|
|
|
|
export default function SelectHotelPage() {
|
|
return (
|
|
<div>
|
|
<HotelCard />
|
|
</div>
|
|
)
|
|
}
|