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.

15 lines (11 loc) 263 B
import { TextBlockComponent } from '../../ui' class ParagraphComponent extends TextBlockComponent { render($$) { let el = super.render($$) return el.addClass('sc-paragraph') } getTagName() { return 'p' } } export default ParagraphComponent