如何在 Typescript tsx 中遍历 React 组件的子组件?
以下将是有效的 jsx:
public render() {
return (
<div>
{React.Children.map(this.props.children, x => x.props.foo)}
</div>
);
}
但是,在 Typescript 中,x 的类型是React.ReactElement<any>
所以我无法访问道具。我需要做某种类型的演员吗?