18 lines
356 B
JavaScript
18 lines
356 B
JavaScript
import React from "react"
|
|
|
|
export default class ItemRow extends React.Component {
|
|
constructor ({ scanResult }) {
|
|
super()
|
|
this.scanResult = scanResult
|
|
}
|
|
|
|
render () {
|
|
return (
|
|
<tr>
|
|
<td>{this.scanResult.name}</td>
|
|
<td>{this.scanResult.partsPrice}</td>
|
|
<td>{this.scanResult.setPrice}</td>
|
|
</tr>
|
|
)
|
|
}
|
|
} |