Files
swagger-ui/src/core/components/operation-extension-row.jsx
2017-11-06 09:18:05 -06:00

16 lines
317 B
JavaScript

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