This commit is contained in:
Ian Gulliver
2024-12-21 06:35:49 -08:00
parent 06495d9258
commit 050d716a3c
5 changed files with 22 additions and 2 deletions

View File

@@ -28,6 +28,6 @@ body {
<script type="module" src="https://cdn.jsdelivr.net/npm/@shoelace-style/shoelace@2.18.0/cdn/shoelace-autoloader.js"></script>
</head>
<body>
tasks!
<script type="module" src="main.js"></script>
</body>
</html>

5
static/main.js Normal file
View File

@@ -0,0 +1,5 @@
"use strict";
function main() {
console.log("Hello, world!");
}
main();