summaryrefslogtreecommitdiff
path: root/src/components/main_content_layout.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/main_content_layout.tsx')
-rw-r--r--src/components/main_content_layout.tsx12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/components/main_content_layout.tsx b/src/components/main_content_layout.tsx
new file mode 100644
index 0000000..0b55d6a
--- /dev/null
+++ b/src/components/main_content_layout.tsx
@@ -0,0 +1,12 @@
+import "./stylesheets/shared.css"
+import { Props } from "./layout";
+
+export default function MainContentLayout(props: Props ) {
+ return(
+ <>
+ <div className="main-view">
+ { props.children }
+ </div>
+ </>
+ );
+} \ No newline at end of file