Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
var TableLayout$1 = function TableLayout$$1(_ref) {
var headerRows = _ref.headerRows,
bodyRows = _ref.bodyRows,
columns = _ref.columns,
cellComponent = _ref.cellComponent,
rowComponent = _ref.rowComponent;
return React.createElement(dxReactGrid.TableLayout, {
layoutComponent: dxReactGrid.StaticTableLayout,
headerRows: headerRows,
rows: bodyRows,
columns: columns,
minColumnWidth: MINIMAL_COLUMN_WIDTH,
containerComponent: TableContainer,
tableComponent: Table$2,
headComponent: TableMUI.TableHead,
bodyComponent: TableMUI.TableBody,
rowComponent: rowComponent,
cellComponent: cellComponent
});
};