Spaces:
Running
Running
import { MouseEventHandler } from "react"; | |
export interface EditableProps { | |
content: string; | |
className?: string; | |
placeholder: string; | |
onContentChange: (content: string) => void; | |
handleClick?: MouseEventHandler<HTMLDivElement>; | |
disabled?: boolean; | |
} | |