UNPKG

@churchapps/apphelper-markdown

Version:

ChurchApps markdown/lexical editor components

11 lines (10 loc) 335 B
import React from "react"; interface Props { value?: string; onChange?: (html: string) => void; style?: React.CSSProperties; placeholder?: string; readOnly?: boolean; } export declare function HtmlEditor({ value, onChange, style, placeholder, readOnly }: Props): import("react/jsx-runtime").JSX.Element; export {};