muryshev's picture
init
79278ec
raw
history blame contribute delete
262 Bytes
import { MouseEventHandler } from "react";
export interface EditableProps {
content: string;
className?: string;
placeholder: string;
onContentChange: (content: string) => void;
handleClick?: MouseEventHandler<HTMLDivElement>;
disabled?: boolean;
}