'use client';
import { SlashInputPlugin, SlashPlugin } from '@platejs/slash-command/react';
import { KEYS } from 'platejs';
import { SlashInputElement } from '@/registry/ui/slash-node';
export const SlashKit = [
SlashPlugin.configure({
options: {
triggerQuery: (editor) =>
!editor.api.some({
match: { type: editor.getType(KEYS.codeBlock) },
}),
},
}),
SlashInputPlugin.withComponent(SlashInputElement),
];
npx shadcn@latest add @plate/slash-kitimport { SlashKit } from "@/components/slash-kit"<SlashKit />