dm-web-react
Version:
The DM web client with React.
31 lines • 1.34 kB
JavaScript
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return extendStatics(d, b);
}
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
import * as React from "react";
import * as App from "../../../components/App";
var Default = /** @class */ (function (_super) {
__extends(Default, _super);
function Default() {
return _super !== null && _super.apply(this, arguments) || this;
}
Default.prototype.render = function () {
return (React.createElement(App.Wrap, null,
React.createElement(App.Header, null),
React.createElement(App.Content, null,
React.createElement(App.PageTitle, null, "Default Page"),
React.createElement("p", null, "Default page content."))));
};
return Default;
}(React.Component));
export default Default;
//# sourceMappingURL=Default.js.map