From 09c9ef19b44f1bd5d2147a463187912dbbae1501 Mon Sep 17 00:00:00 2001 From: zeim839 Date: Sat, 29 Jun 2024 15:21:05 -0400 Subject: [PATCH] feat: create Layout component --- src/Layout/Layout.jsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/Layout/Layout.jsx diff --git a/src/Layout/Layout.jsx b/src/Layout/Layout.jsx new file mode 100644 index 00000000..bf6d69fc --- /dev/null +++ b/src/Layout/Layout.jsx @@ -0,0 +1,14 @@ +import React from 'react' + +import Navbar from '../Navbar/Navbar' +import Footer from '../Footer/Footer' + +const Layout = ({ children, className, style }) => ( +
+ + {children} +
+) + +export default Layout