JSFiddle - React, Tailwind, and code Playground
by InferOn
HTML
<canvas id='c' width=300 height=300></canvas>
JavaScript
var c = document.getElementById('c');
var board = c.getContext("2d");
board.lineWidth = 4;
board.beginPath();
board.arc(c.width/2, c.height/2, 10,0,2*Math.PI);
board.strokeStyle = "blue";
board.stroke();
board.closePath();