react易忘知识点组件通信1.父传子function Children(props){ return( <div>我是孩子:{props.msg}</div> ) } function App(){ const msg = '传递给孩子的东西' return( <div>...2024-05-20前端进阶