25 lines
852 B
TypeScript
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 |