我有一个渲染道具手风琴组件
this.props.children({open: this.state.open})
在render()
然后在其他地方我可以像这样使用它
<Accordion>
{({ open }) => {
console.log(open) //true or false
return (
<>something here</>
)
}}
</Accordion>
{open.toString()} //open is not accessible here
但是如何访问render props函数之外的代码?