Files
qthtml/index.html
2025-06-05 12:33:53 -07:00

16 lines
242 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'
$('body').render(`new`)
</script>
</body>
</html>