JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://rawgit.com/brandonaaron/jquery-mousewheel/master/jquery.mousewheel.min.js"></script>
JavaScript
$(document).on("mousewheel", wheel );
function wheel(e, dY, dX){
document.body.innerHTML = dY + ' sdsd' + dX;
}