summaryrefslogtreecommitdiff
path: root/src/components/main_content_layout.tsx
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2023-04-23 13:12:25 -0600
committerHombreLaser <sebastian-440@live.com>2023-04-23 13:12:25 -0600
commit31cc5ecdb693be1da04ee0a3e6dc876535d5fb4b (patch)
treec87dc3b5aea7b791e7cef8984c1e0a2f31b58418 /src/components/main_content_layout.tsx
parent9a5b4259808d719a531eca18dff993eeeff71bc1 (diff)
Añade loader
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