plane/apps/app/components/lexical/plugins/code-highlight.tsx
2022-11-30 21:28:45 +05:30

12 lines
367 B
TypeScript

import { useEffect } from "react";
import { registerCodeHighlighting } from "@lexical/code";
import { useLexicalComposerContext } from "@lexical/react/LexicalComposerContext";
export const CodeHighlightPlugin = () => {
const [editor] = useLexicalComposerContext();
useEffect(() => {
return registerCodeHighlighting(editor);
}, [editor]);
return null;
};