This commit is contained in:
hamid zarghami
2025-06-22 22:48:15 +03:30
parent 037113ee09
commit 0aab282d6f
12 changed files with 344 additions and 113 deletions
+2
View File
@@ -8,6 +8,7 @@ import SentList from '@/pages/sent/List'
import DraftList from '@/pages/draft/List'
import ArchiveList from '@/pages/archive/List'
import TrashList from '@/pages/Trash/List'
import DetailEmail from '@/pages/received/Detail'
const AppRouter: FC = () => {
return (
<Routes>
@@ -18,6 +19,7 @@ const AppRouter: FC = () => {
<Route path={Paths.draft} element={<DraftList />} />
<Route path={Paths.archive} element={<ArchiveList />} />
<Route path={Paths.trash} element={<TrashList />} />
<Route path={Paths.detailEmail + ':id'} element={<DetailEmail />} />
</Routes>
)
}