this.props可以接受传参
this.props.childer
this.props也可以接受组件
子组件如何调取父组件的方法
//组件1
<a href="true"> 更多 >> </a>
//index
<Iu_zu iu_a={<Iu_a />} title="标题一" />
<Iu_zu title="标题二" />
<Iu_zu title="标题三">
<em> © </em>
</Iu_zu>
<Iu_zu title="标题四">
<span>与你有关的不是遗憾而是梦醒</span>
</Iu_zu>
//组件 这里面的iu_a是组件1
<div className="h3">
<h3>
{this.props.title} {this.props.children}
</h3>
{this.props.iu_a}
</div>