import { useTranslation } from 'react-i18next'; import { Modal } from '@/components/modal'; import { Form } from './form'; import { Todos } from './todos'; import styles from './todo.module.css'; interface TodoProps { onClose: () => void; show: boolean; } export function Todo({ onClose, show }: TodoProps) { const { t } = useTranslation(); return (

{t('modals.todo.title')}

{t('modals.todo.description')}

); }