create(footer) created footer

This commit is contained in:
Yusuf İpek
2021-07-27 15:52:27 +03:00
parent 3399ece396
commit 55f7b9e9fb
7 changed files with 63 additions and 1 deletions
+2
View File
@@ -1,10 +1,12 @@
import Navbar from "./navbar";
import Footer from "./footer";
function Layout({ children }) {
return (
<div className="container">
<Navbar />
<div className="children">{children}</div>
<Footer />
</div>
);
}