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