react.Fragment报错显示Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined.尝试过使用升级版本发现依然报错<React.Fragment> <div className={styles.rowContainer}>{this.renderRowLeft()}</div>
<div className="segmenting-line" />
<div className={styles.rowContainer}>{this.renderRowRight()}</div>
</React.Fragment>请问有谁知道问题吗
1 回答
MYYA
TA贡献1868条经验 获得超4个赞
这个报错说的是元素类型应该是string,class或者function,但是你什么也没有反回。
检查你的styles.rowContainer和this.renderRowLeft/Right有没有返回值
- 1 回答
- 0 关注
- 1335 浏览
添加回答
举报
0/150
提交
取消