created booking section and form component

This commit is contained in:
Yusuf Ipek
2021-05-03 14:08:22 +03:00
parent 43bb82cfc1
commit 29cf4280df
5 changed files with 86 additions and 1 deletions
+2
View File
@@ -1,5 +1,6 @@
import "./App.scss";
import About from "./commons/about-section/about";
import Booking from "./commons/booking-section/booking";
import Feature from "./commons/feature-section/feature";
import Header from "./commons/header/header.jsx";
import Stories from "./commons/stories-section/stories";
@@ -13,6 +14,7 @@ function App() {
<Feature />
<Tours />
<Stories />
<Booking />
</div>
);
}