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>
请问有谁知道问题吗
MYYA