Start using the editor in 5 minutes
npm i novel
import { EditorBubble, EditorBubbleItem, EditorCommand, EditorCommandItem, EditorContent, EditorRoot, } from "novel"; export default () => ( <EditorRoot> <EditorContent> <EditorCommand> <EditorCommandItem /> <EditorCommandItem /> <EditorCommandItem /> </EditorCommand> <EditorBubble> <EditorBubbleItem /> <EditorBubbleItem /> <EditorBubbleItem /> </EditorBubble> </EditorContent> </EditorRoot> );