import { Button } from '../shared/Button' import { useTranslation } from '../../i18n' type Props = { onCreateTask: () => void } export function TaskEmptyState({ onCreateTask }: Props) { const t = useTranslation() return (
{/* Clock icon */}

{t('tasks.emptyTitle')}

{t('tasks.emptyDesc')}

) }