import React, { Component } from 'react' import { Select, Input } from 'antd' class ParamsList extends Component { constructor (props) { super(props) } render () { const Option = Select.Option return (
  • 参数名称 参数说明 ×
  • ) } } export default ParamsList