import { useTranslation } from "next-i18next"; import classNames from "classnames"; export default function Block({ value, label }) { const { t } = useTranslation(); return (
{value === undefined || value === null ? "-" : value}
{t(label)}
); }