JSFiddle - React, Tailwind, and code Playground
HTML
<canvas width="500" height="500" id="canvas"></canvas>
JavaScript
var canvas = document.getElementById('canvas');
var ctx = canvas.getContext('2d');
ctx.arc(100, 100, 50, 0, Math.PI*2, false,false);
ctx.stroke();