import React from "react" import PropTypes from "prop-types" export const ParameterExt = ({ xKey, xVal }) => { return
{ xKey }: { String(xVal) }
} ParameterExt.propTypes = { xKey: PropTypes.string, xVal: PropTypes.any } export default ParameterExt