io-actions/index.html
2024-02-19 14:05:21 -05:00

22 lines
666 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🧩</text></svg>">
<title>Blockly Sample App</title>
<script src="src/index.js" type="module"></script>
</head>
<body>
<div id="page-container">
<div id="menu-pane">
<button id="button-clear">Clear</button>
<button id="button-json">JSON</button>
<pre id="json-output-container"><code id="json-output"></code></pre>
</div>
<div id="blocklyDiv"></div>
</div>
</body>
</html>