mirror of
https://github.com/yusufipk/teknolojirehberleri.xyz.git
synced 2026-09-11 10:56:08 +00:00
create(layout) created persistance layout
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import navbar from "./navbar";
|
||||
|
||||
function Layout({ children }) {
|
||||
return (
|
||||
<div className="container">
|
||||
<div className="children">{children}</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default Layout;
|
||||
@@ -0,0 +1,5 @@
|
||||
function Navbar() {
|
||||
return <div className="navbar"></div>;
|
||||
}
|
||||
|
||||
export default Navbar;
|
||||
Reference in New Issue
Block a user