mirror of
https://github.com/yusufipk/natours-react.git
synced 2026-09-11 11:06:10 +00:00
21 lines
459 B
React
21 lines
459 B
React
import Form from "../form/form";
|
|
|
|
function Booking() {
|
|
return (
|
|
<section className="section-book">
|
|
<div className="row">
|
|
<div className="book">
|
|
<div className="book__form">
|
|
<div className="u-margin-bottom-medium">
|
|
<h2 className="heading-secondary">Start booking now</h2>
|
|
</div>
|
|
<Form />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|
|
|
|
export default Booking;
|