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