JSFiddle - React, Tailwind, and code Playground

by Kamal Kirar

HTML

<p> This is D3 </p>  

<svg width="100" height="100">
  <circle cx="50" cy="50" r="40" stroke="green" stroke-width="4" fill="red" />
  
</svg>
<svg width="100" height="100">
<rect  width= "100" height ="100" />
</svg>

<svg width="200" height="100">
<line  x1= "0" y1 ="100" x2 ="150" y2 = "100" stroke="green" stroke-width="10" />
</svg>

JavaScript

//d3.select("p").style("color" ,"red").text("Hello D3 ");
  //console.log(d3);