import Component from '../component/index'; import RowCol from './RowCol'; class TableRow extends Component { constructor (parentNode, cols, row) { super(null, parentNode); this.cols = cols.map((col) => new RowCol(this.mainNode, row[col.id])); } } export default TableRow;