import React from 'react' import ItemRow from './ItemRow' export default class Table extends React.Component { constructor ({ scanResults }) { super() this.scanResults = scanResults } render () { return ( {this.scanResults.map((scanResult) => )}
) } }