projek2 / views /index.js
devstok's picture
Upload folder using huggingface_hub
6f55a1e verified
window.onload = () => {
let chat = document.querySelector('div.container-fluid')
function addMsg(obj) {
let html = document.createElement('span')
html.className = 'msg'
html.innerHTML = obj
chat.appendChild(html)
}
window.onclick = () => addMsg(12)
}