react-admin-lte
Version:
简单封装的 AdminLTE react 类库,并包含一个编译配置。
24 lines (18 loc) • 462 B
JavaScript
import React from 'react';
export default class Box extends React.Component {
constructor(props, context) {
super(props, context);
}
render() {
return (
<div className={"box box-" + this.props.cssTitle}>
<div className="box-header with-border">
<h3 className="box-title">{this.props.title}</h3>
</div>
<div className="box-body">
{this.props.children}
</div>
</div>
);
}
}