summaryrefslogtreecommitdiffhomepage
path: root/react-frontend/src/components
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2024-06-27 17:03:05 -0400
committerrealtradam <[email protected]>2024-06-27 17:03:05 -0400
commitf8d8ff781dc78a09c0f455313bf1782eb4fba962 (patch)
treed35212dac623582bc9f4e947fe1f1435337a9200 /react-frontend/src/components
parentd9a2c502e208aef7958823dbbb4d23827a57cec0 (diff)
downloadgameHolster-f8d8ff781dc78a09c0f455313bf1782eb4fba962.tar.gz
gameHolster-f8d8ff781dc78a09c0f455313bf1782eb4fba962.zip
add react router
Diffstat (limited to 'react-frontend/src/components')
-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/>
+ </>
+ );
+}