JSFiddle - React, Tailwind, and code Playground

CSS

svg path {
    fill: none;
    stroke: #000;
    stroke-width: 5px;
}

JavaScript

var width = 100,
    height = 100;
 
var svg = d3.select("body").append("svg")
    .attr("width", width)
    .attr("height", height)
    .attr("viewBox",'0 0 2000 2000');
 
var d0 =...