mirror of
https://github.com/multipleofnpm/qthtml.git
synced 2026-01-13 16:17:56 +00:00
16 lines
242 B
HTML
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>
|