这两种方法有什么区别?
将按钮的文本作为props传递
<TextComponent title="Save"/>
function TextComponent(props){
return <button>{props.title}<button/>
}
对比
小时候传文字
<TextComponent>Save<TextComponent />
function TextComponent(props){
return <button>{props.children}<button/>
}