summaryrefslogtreecommitdiff
path: root/client/src/App.tsx
diff options
context:
space:
mode:
authorMichael Hunteman <michael@huntm.net>2024-10-05 11:06:50 -0700
committerMichael Hunteman <michael@huntm.net>2024-10-05 11:06:50 -0700
commitaacf26f374f48b88d532d1528d9d07aabf537610 (patch)
treea777bb304e16e9bc5bf63f0b91c2ce8c727a7090 /client/src/App.tsx
parent80c6cc650601613db580c154e8d50e5a13b69f03 (diff)
Add calendar inviteHEADmaster
Diffstat (limited to 'client/src/App.tsx')
-rw-r--r--client/src/App.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/client/src/App.tsx b/client/src/App.tsx
index 403882b..9f0bf74 100644
--- a/client/src/App.tsx
+++ b/client/src/App.tsx
@@ -3,6 +3,7 @@ import { Outlet } from 'react-router-dom';
import CssBaseline from '@mui/material/CssBaseline';
import NavBar from './components/NavBar';
import GlobalSnackbar from './components/GlobalSnackbar';
+import CalendarDialog from './components/CalendarDialog';
function App() {
return (
@@ -10,6 +11,7 @@ function App() {
<CssBaseline />
<NavBar />
<GlobalSnackbar />
+ <CalendarDialog />
<Outlet />
</>
);