import { useLocalize } from '~/hooks'; import { Dialog, DialogTrigger } from '~/components/ui'; import DialogTemplate from '~/components/ui/DialogTemplate'; import ArchivedChatsTable from './ArchivedChatsTable'; export default function ArchivedChats() { const localize = useLocalize(); return (
{localize('com_nav_archived_chats')}
} />
); }