JSFiddle - React, Tailwind, and code Playground
by demee
HTML
<!DOCTYPE html>
<html>
<head><title>Raphael Test</title></head>
<body>
<div id="notepad"></div>
</body>
</html>
JavaScript
var set = Raphael(["notepad", 320, 200, {
type: "rect",
x: 10,
y: 10,
width: 25,
height: 25,
stroke: "#f00"
}, {
type: "text",
x: 30,
y: 40,
text: "Dump"
}]);