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