16 lines
239 B
HTML
16 lines
239 B
HTML
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<script type="module">
|
||
|
import init from './chir_rs_fe.js';
|
||
|
async function run() {
|
||
|
await init();
|
||
|
}
|
||
|
run();
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body></body>
|
||
|
|
||
|
</html>
|