import { useTranslation } from 'react-i18next'; import { Page, Block, Button } from '@cap-rel/smartcommon'; export const TasksPage = () => { const { t } = useTranslation(); return ( {tasks.length === 0 && (

{t('tasks.empty')}

)}
); };