Another fix to the TS types

This commit is contained in:
Dariusz Niemczyk 2021-08-03 13:30:14 +02:00
parent 36efa448b2
commit 29e9db44a3
No known key found for this signature in database
GPG key ID: 28DFE7164F497CB6
2 changed files with 2 additions and 2 deletions

View file

@ -35,7 +35,7 @@ const PADDING = {
interface IProps {
className?: string;
children: (startMovingEventHandler: (event: MouseEvent) => void) => React.ReactNode;
children: (startMovingEventHandler: (event: React.MouseEvent<Element, MouseEvent>) => void) => React.ReactNode;
draggable: boolean;
app?: IApp;
}