14 lines
337 B
TypeScript
14 lines
337 B
TypeScript
import SidePanel from "@/components/HotelReservation/SidePanel"
|
|
|
|
import SummaryUI from "./UI"
|
|
|
|
import type { SummaryProps } from "@/types/components/hotelReservation/summary"
|
|
|
|
export default function DesktopSummary(props: SummaryProps) {
|
|
return (
|
|
<SidePanel variant="summary">
|
|
<SummaryUI {...props} />
|
|
</SidePanel>
|
|
)
|
|
}
|