Generating SVG with React 

function Diagram({width=800, height=250}) {
  const classes = "diagram";
  const viewBox = `0 0 ${width} ${height}`;
}