summaryrefslogtreecommitdiff
path: root/src/components/layout.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/layout.tsx')
-rw-r--r--src/components/layout.tsx18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/components/layout.tsx b/src/components/layout.tsx
new file mode 100644
index 0000000..50d335e
--- /dev/null
+++ b/src/components/layout.tsx
@@ -0,0 +1,18 @@
+import { ReactNode } from "react";
+import Navbar from "./navbar";
+import "./stylesheets/shared.css"
+
+interface Props {
+ children: ReactNode;
+}
+
+export default function Layout(props: Props) {
+ return(
+ <>
+ <Navbar />
+ <div id="page-content-wrapper">
+ { props.children }
+ </div>
+ </>
+ );
+} \ No newline at end of file