function Son({onGetSonMsb}){
const sonMsb='this is son msg'
return (
<div>
this is son
<button onClick={()=>onGetSonMsb(sonMsg)}>sendMsg</button>
</div>
)
}
function App(){
const getMsg=(msg)=>{
console.log(msg)
}
return (
<div>
this is App
<Son onGetSonMsg={getMsg} />
</div>
)
}
export default App