export function textToRichText(text: string) { return { root: { children: [ { children: [ { detail: 0, format: 0, mode: 'normal', style: '', text, type: 'text', version: 1, }, ], direction: null, format: '', indent: 0, textFormat: 0, textStyle: '', type: 'paragraph', version: 1, }, ], direction: null, format: '', indent: 0, type: 'root', version: 1, }, } }