react-admin-lte
Version:
简单封装的 AdminLTE react 类库,并包含一个编译配置。
26 lines (20 loc) • 561 B
JavaScript
import React from 'react';
export default class InputBase extends React.Component {
constructor(props, context) {
super(props, context);
}
render() {
return (this.props.label ?
<div className="form-group">
<label htmlFor={this.props.name} className="col-sm-2 control-label">{this.props.label}</label>
<div className="col-sm-10">
{this.props.children}
</div>
</div>
:
<div>
{this.props.children}
</div>
);
}
}