io-actions/index.html
2023-12-11 15:24:41 -05:00

22 lines
641 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="pageContainer">
<div id="outputPane">
<button id="button-clear">Clear</button>
<h5>JSON</h5>
<pre id="json-output-container"><code id="json-output"></code></pre>
</div>
<div id="blocklyDiv"></div>
</div>
</body>
</html>