summaryrefslogtreecommitdiff
path: root/client/src/App.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/App.tsx')
-rw-r--r--client/src/App.tsx16
1 files changed, 16 insertions, 0 deletions
diff --git a/client/src/App.tsx b/client/src/App.tsx
new file mode 100644
index 0000000..27fc180
--- /dev/null
+++ b/client/src/App.tsx
@@ -0,0 +1,16 @@
+import React from 'react';
+import { Outlet } from 'react-router-dom';
+import CssBaseline from '@mui/material/CssBaseline';
+import NavBar from './components/NavBar';
+
+function App() {
+ return (
+ <>
+ <CssBaseline />
+ <NavBar />
+ <Outlet />
+ </>
+ );
+}
+
+export default App;