JSFiddle - React, Tailwind, and code Playground
by Will Stott
HTML
<canvas id="lol">
CSS
canvas {
background-color: red;
}
JavaScript
var c = document.getComponentByID('lol');
c.width=200;
c.height=200;
by Will Stott
<canvas id="lol">
canvas {
background-color: red;
}
var c = document.getComponentByID('lol');
c.width=200;
c.height=200;