JSFiddle - React, Tailwind, and code Playground

HTML

<div id="chart-2"></div>

CSS

svg { border: 1px solid grey;}
circle {fill: #7070FF; }

JavaScript

(function D3js() {
    var svg = window.d3.select("body")
        .append("svg")
        .attr("width", 100)
        .attr("height", 100);

    svg.append("rect")
        .attr("x", 10)
        .attr("y", 10)
        .attr("width", 80)
        .attr("height", 80)
        .style("fill", "orange");
})();