JSFiddle - React, Tailwind, and code Playground

by hoverwu

HTML

<script src="https://d3js.org/d3.v3.min.js"></script>
<script src="https://d3js.org/d3.v3.min.js"></script>
<html>
<body>
<p>
ddddd
</p>
</body>
</html>

JavaScript

var width=400;
var height=400;
var svg=d3.select("body").append("svg").attr("width",width)
.attr("height",height);
svg.append("circle").attr("cx","150px")
.attr("cy","150px").attr("r","50px").attr("fill","red");