UNPKG

@asgerami/zemenay-blog

Version:

Plug-and-play blog system for Next.js - Get a fully functional blog running in minutes with zero configuration

9 lines (8 loc) 307 B
interface RichTextEditorProps { content: string; onChange: (content: string) => void; placeholder?: string; className?: string; } export declare function RichTextEditor({ content, onChange, placeholder, className, }: RichTextEditorProps): import("react/jsx-runtime").JSX.Element; export {};