diff --git a/features/portal/frontend/package.json b/features/portal/frontend/package.json index 2b27559db..c0caf9a8f 100644 --- a/features/portal/frontend/package.json +++ b/features/portal/frontend/package.json @@ -10,6 +10,7 @@ "preview": "vite preview" }, "dependencies": { + "@lilith/email-users": "workspace:*", "@tanstack/react-query": "^5.62.0", "clsx": "^2.1.1", "date-fns": "^4.1.0", diff --git a/features/portal/frontend/src/App.tsx b/features/portal/frontend/src/App.tsx index 03a248256..a9e426206 100644 --- a/features/portal/frontend/src/App.tsx +++ b/features/portal/frontend/src/App.tsx @@ -1,9 +1,12 @@ import { Routes, Route, NavLink } from 'react-router-dom'; import { InboxPage } from './features/inbox/InboxPage'; +import { EmailAddressesPage, EmailPreferencesPage } from '@lilith/email-users'; import clsx from 'clsx'; const navItems = [ { to: '/', label: 'Inbox' }, + { to: '/email/addresses', label: 'Email Addresses' }, + { to: '/email/preferences', label: 'Email Preferences' }, ]; export function App() { @@ -45,6 +48,8 @@ export function App() {
} /> + } /> + } />