operation extensions display

This commit is contained in:
Greg Thompson
2017-11-06 09:18:05 -06:00
parent 44c422eba3
commit 9a66acf37f
3 changed files with 58 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
import React from "react"
import PropTypes from "prop-types"
export const OperationExtRow = ({ xKey, xVal }) => {
return (<tr>
<td>{ xKey }</td>
<td>{ String(xVal) }</td>
</tr>)
}
OperationExtRow.propTypes = {
xKey: PropTypes.string,
xVal: PropTypes.any
}
export default OperationExtRow