import { Container, Heading } from "@medusajs/ui" import { ActionMenu } from "../../../../../components/common/action-menu" import { InventoryTypes } from "@medusajs/types" import { PencilSquare } from "@medusajs/icons" import { SectionRow } from "../../../../../components/common/section" import { getFormattedCountry } from "../../../../../lib/addresses" import { useTranslation } from "react-i18next" type InventoryItemAttributeSectionProps = { inventoryItem: InventoryTypes.InventoryItemDTO } export const InventoryItemAttributeSection = ({ inventoryItem, }: InventoryItemAttributeSectionProps) => { const { t } = useTranslation() return (
{t("products.attributes")} , }, ], }, ]} />
) }