import * as React from "react"; import { basicExtensions, withComments } from "@shared/editor/nodes"; import Editor, { Props as EditorProps } from "~/components/Editor"; import type { Editor as SharedEditor } from "~/editor"; const extensions = withComments(basicExtensions); const CommentEditor = ( props: EditorProps, ref: React.RefObject ) => ; export default React.forwardRef(CommentEditor);