opds-web-client
Version:
21 lines (20 loc) • 877 B
JavaScript
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
var React = require("react");
var LoadingIndicator = (function (_super) {
__extends(LoadingIndicator, _super);
function LoadingIndicator() {
return _super.apply(this, arguments) || this;
}
LoadingIndicator.prototype.render = function () {
return (React.createElement("div", { className: "loading", role: "dialog", "aria-labelledby": "loading" },
React.createElement("h1", { id: "loading" }, "Loading")));
};
return LoadingIndicator;
}(React.Component));
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = LoadingIndicator;
;