20 lines
444 B
JavaScript
20 lines
444 B
JavaScript
(function() {
|
|
var Main = /*@__PURE__*/ (function(Component) {
|
|
function Main(props) {
|
|
Component.call(this, props);
|
|
}
|
|
|
|
if (Component) Main.__proto__ = Component;
|
|
Main.prototype = Object.create(Component && Component.prototype);
|
|
Main.prototype.constructor = Main;
|
|
Main.prototype.render = function() {
|
|
return;
|
|
};
|
|
|
|
return Main;
|
|
})(Component);
|
|
|
|
apivm.define("main", Main);
|
|
apivm.render(apivm.h("main", null), "body");
|
|
})();
|