import { FC } from 'react' import { Paths } from '@/utils/Paths' import { Routes, Route } from 'react-router-dom' import Home from '@/pages/home/Home' import ReceivedList from '@/pages/received/List' import Setting from '@/pages/setting/Setting' import SentList from '@/pages/sent/List' import DraftList from '@/pages/draft/List' import ArchiveList from '@/pages/archive/List' import TrashList from '@/pages/Trash/List' const AppRouter: FC = () => { return ( } /> } /> } /> } /> } /> } /> } /> ) } export default AppRouter