import Component from '../component'; import TableCellOverflow from '../table-cell-overflow'; class ClientLogsTableRow extends Component { constructor (parentNode, cols, row) { super(null, parentNode); this.cols = cols.map((col) => new TableCellOverflow(this.mainNode, row[col.id])); } } export default ClientLogsTableRow;