function draw() {
const svg = d3
.create("svg")
.attr("width", width)
.attr("height", height)
.attr("viewBox", [0, 0, width, height])
svg.append('circle').attr('r', 100).attr('cx', width / 2).attr('cy', height / 2).attr("fill", "rgb(156 163 175)");
return svg.node();
}