Files
qthtml/index.html
2025-06-05 12:29:20 -07:00

16 lines
239 B
HTML

<!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'
console.log($('h1'))
</script>
</body>
</html>