Split table into component

This commit is contained in:
2022-03-13 16:19:52 +03:00
parent 9e216f821f
commit 648af4f060
8 changed files with 108 additions and 50 deletions

18
app/pages/home/ItemRow.js Normal file
View File

@@ -0,0 +1,18 @@
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>
)
}
}