使用方式如下, 页面渲染出 hello, cpreact, 至于是否实现先观望一段时间
// 父组件function App() { return ( <Child> {() => 'hello, cpreact.'} </Child> )} // 子组件const Child = ({ children }) => children()