我刚刚开始学习React。通过node.js运行服务器时,在localhost:3000中出现此错误
TypeError:类扩展未定义的值不是构造函数或null
Index.js
import React , {Compnonent} from "react";
class lottery extends Compnonent {
render() {
return (
<h1>Decentralized Lottery Application</h1>
)
}
}
export default lottery;
答案 0 :(得分:2)
有一个拼写错误{Component}对其进行修复。
您将其拼写为{Compnonent}
import React , {Component} from "react";