import { HttpTypes } from "@medusajs/types" import { useMemo } from "react" import { useTranslation } from "react-i18next" import { createDataTableColumnHelper } from "@medusajs/ui" import { DescriptionCell } from "../../../components/table/table-cells/sales-channel/description-cell" const columnHelper = createDataTableColumnHelper() export const useReturnReasonTableColumns = () => { const { t } = useTranslation() return useMemo( () => [ columnHelper.accessor("label", { header: () => t("fields.label"), enableSorting: true, sortLabel: t("fields.label"), sortAscLabel: t("filters.sorting.alphabeticallyAsc"), sortDescLabel: t("filters.sorting.alphabeticallyDesc"), }), columnHelper.accessor("value", { header: () => t("fields.value"), enableSorting: true, sortLabel: t("fields.value"), sortAscLabel: t("filters.sorting.alphabeticallyAsc"), sortDescLabel: t("filters.sorting.alphabeticallyDesc"), }), columnHelper.accessor("description", { header: () => t("fields.description"), cell: ({ getValue }) => , enableSorting: true, sortLabel: t("fields.description"), sortAscLabel: t("filters.sorting.alphabeticallyAsc"), sortDescLabel: t("filters.sorting.alphabeticallyDesc"), }), ], [t] ) }