Generating SVG with React 

function Diagram({width=800, height=250}) {
  const classes = "diagram";
  const viewBox = `0 0 ${width} ${height}`;
  return <svg className={classes} viewBox={viewBox}>
    <rect className="background"
      x="0" y="0" width={width} height={height}
    />
  </svg>;
}