created feature-box component and section

This commit is contained in:
Yusuf Ipek
2021-05-02 12:55:38 +03:00
parent ed73cbb2bb
commit 12ab9e618c
11 changed files with 129 additions and 8 deletions
+3 -1
View File
@@ -1,12 +1,14 @@
import "./App.scss";
import About from "./commons/about-section/about";
import Header from "./commons/header/header";
import Feature from "./commons/feature-section/feature";
import Header from "./commons/header/header.jsx";
function App() {
return (
<div>
<Header />
<About />
<Feature />
</div>
);
}