import { Component } from 'react' export default class ItemRow extends Component { constructor ({ scanResult }) { super() this.scanResult = scanResult } render () { return ( {this.scanResult.name} {this.scanResult.partsPrice} {this.scanResult.setPrice} ) } }