JSFiddle - React, Tailwind, and code Playground

by shs400

HTML

<div class='wrap'>
  <canvas id="my-canvas" width="400" height="300">
    해당 브라우저는 html5 canvas element를 지원하지 않습니다.
  </canvas>
</div>

CSS

body {
  background: #000;
}
.wrap {
  text-align: center;
}
#my-canvas {
  background: #fff;
}