Generating SVG with React
function TextBox({x, y, width=200, height=120, children}) { return <g className="text-box"> <rect x="0" y="0" width={width} height={height} /> <text x={width/2} y={height/2}>{children}</text> </g>; }
function TextBox({x, y, width=200, height=120, children}) { return <g className="text-box"> <rect x="0" y="0" width={width} height={height} /> <text x={width/2} y={height/2}>{children}</text> </g>; }