@lobehub/editor
Version:
A powerful and extensible rich text editor built on Meta's Lexical framework, providing a modern editing experience with React integration.
9 lines (8 loc) • 306 B
TypeScript
import { type FC } from 'react';
import type { SlashMenuProps } from '../type';
/**
* SlashMenu component - Only responsible for rendering the menu UI
* All state management and plugin registration is handled by ReactSlashPlugin
*/
declare const SlashMenu: FC<SlashMenuProps>;
export default SlashMenu;