phx-react
Version:
PHX REACT
12 lines (11 loc) • 376 B
TypeScript
import * as React from 'react';
interface IEditorProps {
defaultValue?: string;
placeholder?: string;
onChange?(value: string): void;
label?: string;
apiCdnUpload: string;
disabled?: boolean;
}
export default function PHXTextEditorV2({ defaultValue, label, onChange, placeholder, apiCdnUpload, disabled, }: IEditorProps): React.JSX.Element;
export {};