JSFiddle - React, Tailwind, and code Playground

by pleinx

HTML

<button>
sdfg
</button>

CSS

body {
  width: 100px;
  height: 100px;
  background: red;
}

JavaScript

$(function() {
$('button').on('touchstart', function (e) {
	console.log(e);
    if (e.touches.length > 1) {
    	console.log("asdf");
    }
});
});