fix: TypeError: Class constructor MouseSensor cannot be invoked without 'new'

This commit is contained in:
chenos 2021-08-21 22:24:14 +08:00
parent 7eb6297d0f
commit 3d04d527f3

View File

@ -135,6 +135,9 @@ class MyMouseSensor extends MouseSensor {
}, },
}, },
]; ];
constructor(props) {
super(props);
}
} }
const InternalKanban = observer((props: any) => { const InternalKanban = observer((props: any) => {