From 2038aa804127ad8ea9392398fec73ee815e8e582 Mon Sep 17 00:00:00 2001 From: Asad Date: Tue, 20 Jan 2026 12:38:16 -0500 Subject: [PATCH] added index.html --- index.html | 11 +++++++++++ src/index.ts | 4 +++- 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 index.html diff --git a/index.html b/index.html new file mode 100644 index 0000000..035de94 --- /dev/null +++ b/index.html @@ -0,0 +1,11 @@ + + + + + + + +

Open DevTools Console (F12) to see output

+ + + \ No newline at end of file diff --git a/src/index.ts b/src/index.ts index a08111d..2dbe4fa 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,3 +1,5 @@ const Hello = () => { console.log('hello')} -export { Hello }; \ No newline at end of file +export { Hello }; + +Hello(); \ No newline at end of file