@churchapps/apphelper-markdown
Version:
ChurchApps markdown/lexical editor components
12 lines (11 loc) • 362 B
TypeScript
import React from "react";
import "./editor.css";
interface Props {
value: string;
onChange?: (html: string) => void;
style?: React.CSSProperties;
placeholder?: string;
readOnly?: boolean;
}
export default function HtmlEditorInner({ value, onChange, style, placeholder, readOnly }: Props): import("react/jsx-runtime").JSX.Element;
export {};