Classes
Components
Modules
ProseEditor
Class defined in packages/prose-editor/ProseEditor.js#26 inherits from
Configurable ProseEditor component
Example
const cfg = new Configurator()
cfg.import(ProseEditorPackage)
cfg.import(SuperscriptPackage)
window.onload = function() {
let doc = configurator.createArticle(fixture)
let documentSession = new DocumentSession(doc)
ProseEditor.mount({
documentSession: documentSession,
configurator: configurator
}, document.body)
}