Update 2025-04-17_20:31:51

This commit is contained in:
root
2025-04-17 20:31:52 +02:00
commit 69427b62cc
9 changed files with 302 additions and 0 deletions

7
static/button.js Normal file
View File

@ -0,0 +1,7 @@
export function createEmojiButton() {
const btn = document.createElement('button')
btn.className = 'emoji-btn'
btn.textContent = '❓'
return btn
}