added index.html
This commit is contained in:
parent
9737ce9cf1
commit
2038aa8041
11
index.html
Normal file
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();
|
||||
Loading…
Reference in New Issue
Block a user