JSFiddle - React, Tailwind, and code Playground
HTML
<canvas id="canvas" height="600" width="600"></canvas>
<script src="https://cdn.rawgit.com/jondavidjohn/hidpi-canvas-polyfill/d6a749a5/dist/hidpi-canvas.js
"></script>
<script>
(function() {
var canvas = document.getElementById('canvas');
var ctx = canvas.getContext('2d');
console.log(ctx)
ctx.font="20px Arial";
ctx.fillText("Am I Sharp?",10,300);
ctx.fillText("Am I Sharp Also?",10,450);
console.log(ctx)
})();
</script>