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 27fc180..403882b 100644
--- a/client/src/App.tsx
+++ b/client/src/App.tsx
@@ -2,12 +2,14 @@ import React from 'react';
import { Outlet } from 'react-router-dom';
import CssBaseline from '@mui/material/CssBaseline';
import NavBar from './components/NavBar';
+import GlobalSnackbar from './components/GlobalSnackbar';
function App() {
return (
<>
<CssBaseline />
<NavBar />
+ <GlobalSnackbar />
<Outlet />
</>
);