Spaces:
Running
Running
File size: 262 Bytes
79278ec |
1 2 3 4 5 6 7 8 9 10 11 |
import { MouseEventHandler } from "react";
export interface EditableProps {
content: string;
className?: string;
placeholder: string;
onContentChange: (content: string) => void;
handleClick?: MouseEventHandler<HTMLDivElement>;
disabled?: boolean;
}
|