📜  TypeError: ShallowWrapper::state 要求 `state` 不是 `null` 或 `undefined` - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:20.127000             🧑  作者: Mango

代码示例1
class MyComponent extends React.Component {
  constructor(props) {
    super(props);
    this.state = {/* initial state */}
  }
}