@blinkk/editor
Version:
Structured content editor with live previews.
18 lines • 516 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MediaPart = void 0;
const selective_edit_1 = require("@blinkk/selective-edit");
const section_1 = require("./section");
class MediaPart extends section_1.ContentSectionPart {
get label() {
return 'Media';
}
get section() {
return 'media';
}
templateContent(editor) {
return selective_edit_1.html `Media...`;
}
}
exports.MediaPart = MediaPart;
//# sourceMappingURL=sectionMedia.js.map