yylib-quick-mobile
Version:
yylib-quick-mobile
21 lines (17 loc) • 476 B
JavaScript
/**
* Created by gaoly on 2018.3.13. 移动端布局容器
*/
import React from 'react'
class YYPage extends React.Component {
render () {
let {style}=this.props;
style=style?Object.assign(style,{height:"100%"}):{height:"100%"};
return <div className="yy-page" style={style}>
{this.props.children}
</div>
}
componentWillMount(){
document.title=this.props.uititle;
}
}
module.exports = YYPage;