plane/web/components/tiptap/mentions/index.tsx

10 lines
209 B
TypeScript
Raw Permalink Normal View History

import Mention from "@tiptap/extension-mention";
import suggestion from "./suggestion";
export const Mentions = Mention.configure({
HTMLAttributes: {
class: 'mention',
},
suggestion: suggestion,
})