operation extensions display
This commit is contained in:
15
src/core/components/operation-extension-row.jsx
Normal file
15
src/core/components/operation-extension-row.jsx
Normal 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
|
||||
Reference in New Issue
Block a user