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.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 />
</>
);