@churchapps/apphelper-markdown
Version:
ChurchApps markdown/lexical editor components
10 lines (9 loc) • 337 B
TypeScript
interface Props {
value: string;
onChange?: (newValue: string) => void;
style?: any;
textAlign?: "left" | "center" | "right";
placeholder?: string;
}
export declare function MarkdownEditor({ value: markdownString, onChange, style, textAlign, placeholder }: Props): import("react/jsx-runtime").JSX.Element;
export {};