const width = 600;
const height = 600;

// Dodanie elementu svg na stronie
let svg = d3
  .select("body")
  .append("svg")
  .attr("width", width)
  .attr("height", height);
