added index.html

This commit is contained in:
Asad Karimov 2026-01-20 12:38:16 -05:00
parent 9737ce9cf1
commit 2038aa8041
2 changed files with 14 additions and 1 deletions

11
index.html Normal file

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p>Open DevTools Console (F12) to see output</p>
<script type="module" src="./src/index.ts"></script>
</body>
</html>

@ -1,3 +1,5 @@
const Hello = () => { console.log('hello')}
export { Hello };
export { Hello };
Hello();