diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx
index fd2835b..ca9ca96 100644
--- a/frontend/src/App.tsx
+++ b/frontend/src/App.tsx
@@ -7,6 +7,7 @@ import EventList from './components/EventList';
import EventForm from './components/EventForm';
import RSVPForm from './components/RSVPForm';
import EventAdmin from './components/EventAdmin';
+import EventView from './components/EventView';
import './App.css';
const darkTheme = createTheme({
@@ -72,6 +73,7 @@ const App: React.FC = () => {
} />
} />
} />
+ } />
diff --git a/frontend/src/components/EventList.tsx b/frontend/src/components/EventList.tsx
index f6b8de4..5054096 100644
--- a/frontend/src/components/EventList.tsx
+++ b/frontend/src/components/EventList.tsx
@@ -86,6 +86,18 @@ const EventList: React.FC = () => {
+