import { Popover, Tag } from "antd"; import Barcode from "react-barcode"; import { useTranslation } from "react-i18next"; export default function BarcodePopupComponent({ value, children }) { const { t } = useTranslation(); return (
}> {children ? children : {t("general.labels.barcode")}}
); }