14 lines
203 B
JavaScript
14 lines
203 B
JavaScript
|
export const emptyParagraphBlock = {
|
||
|
nodes: [
|
||
|
{ kind: 'block',
|
||
|
type: 'paragraph',
|
||
|
nodes: [{
|
||
|
kind: 'text',
|
||
|
ranges: [{
|
||
|
text: ''
|
||
|
}]
|
||
|
}]
|
||
|
}
|
||
|
]
|
||
|
};
|