React doesn't provide the listener to listen the DOM event. But we can do it in React life cycle:
So when the compoment did mount, we add listeners to the dom event.
And remember to remove the dom listener when the compoment unmount.
React doesn't provide the listener to listen the DOM event. But we can do it in React life cycle:
So when the compoment did mount, we add listeners to the dom event.
And remember to remove the dom listener when the compoment unmount.