JSFiddle - React, Tailwind, and code Playground

by electronoob

HTML

<canvas id=cc width=200 height=200></canvas>
<br>
Lame builder &trade;

JavaScript

ctx = cc.getContext('2d');
var mX = 0, mY = 0;
cc.addEventListener('mousemove',function(e){mX = e.x; mY = e.y;});