diff --git a/frontend/src/Inbox.jsx b/frontend/src/Inbox.jsx new file mode 100644 index 0000000..33b0638 --- /dev/null +++ b/frontend/src/Inbox.jsx @@ -0,0 +1,7 @@ +const Inbox = () => { + return ( +
Inbox
+ ) +} + +export default Inbox \ No newline at end of file diff --git a/frontend/src/main.jsx b/frontend/src/main.jsx index 46b1703..ee885ec 100644 --- a/frontend/src/main.jsx +++ b/frontend/src/main.jsx @@ -16,6 +16,7 @@ import EventDetail from './EventDetail'; import Personal from "./personal"; import Hackathon from "./hackathon"; +import Inbox from "./Inbox"; const router = createBrowserRouter([ { @@ -97,6 +98,16 @@ const router = createBrowserRouter([ ), errorElement: + }, + { + path: "/inbox", + element: ( + <> + + + + ), + errorElement: } ]);