summaryrefslogtreecommitdiffhomepage
path: root/react-frontend/src/components/Layout.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'react-frontend/src/components/Layout.tsx')
-rw-r--r--react-frontend/src/components/Layout.tsx11
1 files changed, 11 insertions, 0 deletions
diff --git a/react-frontend/src/components/Layout.tsx b/react-frontend/src/components/Layout.tsx
new file mode 100644
index 0000000..9221687
--- /dev/null
+++ b/react-frontend/src/components/Layout.tsx
@@ -0,0 +1,11 @@
+import { Outlet } from "react-router-dom";
+
+export default function Layout()
+{
+ return(
+ <>
+ <div>sidebar</div>
+ <Outlet/>
+ </>
+ );
+}