JSFiddle - React, Tailwind, and code Playground
by seatsio
HTML
<div id="chart"></div>
<script src="https://cdn.seatsio.net/chart.js"></script>
<script>
new seatsio.SeatingChart({
divId: 'chart',
workspaceKey: "publicDemoKey",
event: "smallTheatreEvent",
objectIcon: function(a, b, c) {
console.log(a);
console.log(b);
console.log(c);
return "check";
}
}).render();
</script>