enable additional file types and add demo files

This commit is contained in:
Nayan
2025-05-08 19:23:06 -04:00
parent 4e8e22ec61
commit e1e4d728b5
6 changed files with 49 additions and 6 deletions

4
public/script.js Normal file
View File

@@ -0,0 +1,4 @@
const button = document.createElement('button');
button.textContent = 'Click me!';
button.onclick = () => alert('You clicked the button!');
document.body.appendChild(button);