@sujalchoudhari/solaris-ui
Version:
A UI framework to create HTML pages with just JavaScript.
22 lines • 606 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const component_1 = __importDefault(require("./component"));
class String extends component_1.default {
/**
* The Content to be rendered as a string
*/
content;
constructor(content = "") {
super("string");
this.content = content;
}
toString() {
return this.content;
}
}
exports.default = String;
;
//# sourceMappingURL=string.js.map