quality_frontend/platform/example/src/component/step/http/Host.tsx

25 lines
852 B
TypeScript

import {Component} from "react";
import {Input} from "antd";
import style from "./Http.module.less"
class Host extends Component<any,any>{
render() {
return <div>
<div className={style.HttpFLex}>
<span className={style.HttpLabel}></span>
<span className={style.HttpFLex1}><Input placeholder="" /></span>
</div>
<div className={style.HttpFLex}>
<span className={style.HttpLabel}></span>
<span className={style.HttpFLex1}><Input placeholder="" /></span>
</div>
<div className={style.HttpFLex}>
<span className={style.HttpLabel}></span>
<span className={style.HttpFLex1}><Input placeholder="" /></span>
</div>
</div>;
}
}
export default Host