slate-editor
Version:
A complete rich text editor based on SlateJS framework
16 lines (14 loc) • 325 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
var initialEditorState = {
document: {
nodes: [{
kind: 'block',
type: 'paragraph',
nodes: [{ kind: 'text', leaves: [{ text: 'Uma linha de texto em um parágrafo.' }] }]
}]
}
};
exports.default = initialEditorState;