我创建了通过父组件上的props传递的组件,并在map循环中使用组件,但是如果我在循环后再次调用它则显示错误Invariant Violation: Invalid tag:
{ PropsPassedComponent: propsPassedComponent } = this.props
<Wrapper>
{dataList.map((data) => (
<PropsPassedComponent data={data} key={data.id}>
))}
<PropsPassedComponent last={true} key={dataList.length}> {/* <-- if I called Component agian here, it's show error */}
</Wrapper>
感谢您的考虑,请告诉我您是否需要更多信息。