Files
warframe-center/app/pages/home/ItemRow.js
2022-03-13 22:49:28 +03:00

19 lines
359 B
JavaScript

import { Component } from 'react'
export default class ItemRow extends 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>
)
}
}