~starkingdoms/starkingdoms

ref: b2f768d7827bb819570c63eb4bc039de23fca6a0 starkingdoms/starkingdoms-client/src/chat.ts -rw-r--r-- 245 bytes
b2f768d7 — ghostlyzsh forgot to fix module spawn timer 1 year, 11 months ago
                                                                                
1
2
3
4
5
6
7
export function addMessage(classname: string, message: string) {
  let p = document.createElement("p");
  p.innerText = message;
  p.classList.add("message");
  p.classList.add(classname);
  document.getElementById("chatbox")!.appendChild(p);
}