{
const el = html`
<svg>
<rect />
<rect />
<rect />
<rect />
</svg>
`
const svg = d3.select(el)
const boundElement = svg.selectAll('rect').data(barData);
const boundElement2 = svg.selectAll('rect').datum(barData);
const boundElement3 = svg.select('rect').datum(barData);
console.log(`boundElement ===> `, boundElement);
console.log(`boundElement2 ===> `, boundElement2);
console.log(`boundElement3 ===> `, boundElement3);
return boundElement;
}