import { useTranslation } from "react-i18next" import { ConfigurableDataTable } from "../../../../components/table/configurable-data-table" import { useInventoryTableAdapter } from "./inventory-table-adapter" export const ConfigurableInventoryListTable = () => { const { t } = useTranslation() const adapter = useInventoryTableAdapter() return ( ) }