class Layout extends Component {
render(){
return (
<div>
<h1>{this.props.head}</h1>
<h2>{this.props.body}</h2>
<h3>{this.props.foot}</h3>
</div>
)
}
}
<Layout head={<Header />} body={<Body />} foot={<Foot />}/>
网友评论