UNPKG

substance

Version:

Substance is a JavaScript library for web-based content editing. It provides building blocks for realizing custom text editors and web-based publishing systems.

11 lines (8 loc) 237 B
import { TextBlockComponent } from '../../ui' class CodeblockComponent extends TextBlockComponent { render($$) { let el = super.render.call(this, $$) return el.addClass('sc-codeblock') } } export default CodeblockComponent