UNPKG

react-admin-lte

Version:

简单封装的 AdminLTE react 类库,并包含一个编译配置。

32 lines (28 loc) 747 B
import React from 'react'; export default class Container extends React.Component { constructor(props, context) { super(props, context); } render() { return ( <div> <section className="content-header"> <h1> {this.props.title} <small>{this.props.vtitle}</small> </h1> <ol className="breadcrumb"> <li><a href="#/"><i className="fa fa-home"/> 首页</a></li> <li>{this.props.title}</li> <li className="active">{this.props.vtitle}</li> </ol> </section> <div className="row"> <div className="col-xs-12"> {this.props.children} </div> </div> </div> ) } }