14 lines
203 B
JavaScript
Raw Normal View History

export const emptyParagraphBlock = {
nodes: [
{ kind: 'block',
type: 'paragraph',
nodes: [{
kind: 'text',
ranges: [{
text: ''
}]
}]
}
]
};