'use strict' import React from 'react' import './index.less' class Box extends React.Component { render() { const { title, height = '100%', children, bodyPaddingTop = 1, titlePaddingTop, margin, overflow, subtitle } = this.props const headerbg = { background: 'url(/assets/images/homePage/bigscreen/headertitlebg.png) no-repeat', backgroundSize: '100% 100%', } return (
{title} {subtitle &&
本周
本月
本年
}
{children}
) } } export default Box