[wip] factoring vdk out into several packages

This commit is contained in:
2023-05-25 15:05:48 -06:00
parent 35ef2e0b1d
commit ee30eaaf7f
231 changed files with 13800 additions and 0 deletions
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="../style.css">
<title>Hello world: Sidekick</title>
</head>
<body>
<ul>
<li>
<a href="/">Home</a>
<ul>
<li><a href="../">Examples</a></li>
<ul><li><b>Hello world</b></li></ul>
</ul>
</li>
</ul>
<h1>Sidekick Example: Hello World</h1>
<h4>Check the console</h4>
<script type="module">
import * as sk from '../sidekick_dist/dist_js/sidekick.js';
sk.hello();
</script>
</body>
</html>