import React, { Component } from 'react' import { Button } from 'antd' import ParamsList from './ParamsList.js' class ResParams extends Component { constructor(props) { super(props) } render () { return (
返回参数 :
) } } export default ResParams