created text component

This commit is contained in:
Yusuf Ipek
2021-05-01 15:49:54 +03:00
parent 4d60e39e66
commit 9199a562e8
7 changed files with 56 additions and 3 deletions
+2
View File
@@ -1,10 +1,12 @@
import "./App.scss";
import About from "./commons/about-section/about";
import Header from "./commons/header/header";
function App() {
return (
<div>
<Header />
<About />
</div>
);
}