Create index.html

This commit is contained in:
2025-06-05 12:26:10 -07:00
committed by GitHub
parent 9f4b3a5c37
commit 469bf19283

14
index.html Normal file
View File

@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
</head>
<body>
<h1>Testing index.js Module Import</h1>
<script type="module">
import {$} from './index.js';
</script>
</body>
</html>