15 lines
476 B
JavaScript
15 lines
476 B
JavaScript
import Date from "./date";
|
|
import Detail from "./detail";
|
|
|
|
function BookingPage({ doctor }) {
|
|
return (
|
|
<div
|
|
className="flex justify-center gap-[24px] padding-responsive
|
|
items-stretch pt-[calc(12px_+_75px_+_32px)] sm:pt-[calc(21px_+_75px_+_45px)] md:pt-[calc(30px_+_75px_+_58px)] lg:pt-[calc(40px_+_75px_+_78px)]">
|
|
<Detail doctor={doctor} />
|
|
<Date doctor={doctor} />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default BookingPage |