import React from 'react'; import { headerFormatter, cellFormatter, } from '../../../../move_to_foreman/components/common/table'; import helpers from '../../../../move_to_foreman/common/helpers'; const TableSchema = [ { property: 'name', header: { label: __('Name'), formatters: [headerFormatter], }, cell: { formatters: [ (value, { rowData }) => ( {rowData.name} ), ], }, }, { property: 'product_name', header: { label: __('Product'), formatters: [headerFormatter], }, cell: { formatters: [cellFormatter], }, }, ]; export default TableSchema;