Add BaseCommentKit to the editor's plugin array. The kit keeps its node renderers and feature plugins together.
import { createSlateEditor } from "platejs";
import { BaseCommentKit } from "@/components/editor/plugins/comment-base-kit";
const editor = createSlateEditor({
plugins: [...BaseCommentKit],
});
Connect users, persistence, permissions, and any realtime transport in the host application. The component alone does not provide a shared backend.
