14 lines
208 B
JavaScript

function Component() {
throw new Error("THIS SHOULD NOT BE CALLED");
}
Component.prototype = {
onCreate: function () {
this.state = {
name: "Frank",
};
},
};
module.exports = Component;