Vincent

Results 1 issues of Vincent

如果是以下这种嵌套的函数组件, Init load是可以,但如果我点击FirstChild 的button就会出现只余下div的情况,似乎就不能够正确更新 ``` // Second child component that will be passed as props function SecondChild({ message }: { message: string }) { console.log("SecondChild render"); return ( Second Child...