We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 07a6295 + 22ee184 commit 484c272Copy full SHA for 484c272
src/App.js
@@ -2,6 +2,7 @@
2
import React, {Component} from 'react';
3
import {connect} from 'react-redux';
4
import throttle from 'lodash.throttle';
5
+import debounce from 'lodash.debounce';
6
7
import './App.css';
8
@@ -105,6 +106,7 @@ class App extends Component {
105
106
this.applyingMouseActions = false;
107
this.clickCallBack = throttle(this.clickCallBack, 200);
108
this.hoverCallBack = throttle(this.hoverCallBack, 200);
109
+ this.configCallBack = debounce(this.configCallBack, 500);
110
}
111
112
// eslint-disable-next-line react/sort-comp
0 commit comments