import { type FC } from "react"; import { useTranslation } from "react-i18next"; type Props = { value?: string; onChange?: (value: string) => void; }; const TaskDetailDescription: FC = ({ value = "", onChange }) => { const { t } = useTranslation("global"); return (
{t("taskmanager.task_detail.description")}