make onElementClick optional

This commit is contained in:
ad1992 2022-03-24 17:28:40 +05:30
parent 5f4a5b1789
commit 14a23c6c50

View File

@ -263,7 +263,7 @@ export interface ExcalidrawProps {
) => void;
renderCustomElementWidget?: (appState: AppState) => void;
customElementsConfig?: CustomElementConfig[];
onElementClick: (
onElementClick?: (
element: NonDeleted<ExcalidrawElement>,
event: React.PointerEvent<HTMLCanvasElement>,
) => void;