10 lines
199 B
TypeScript
Raw Normal View History

2021-06-11 16:34:18 +08:00
import { Chatroom } from "./Chatroom";
document.querySelectorAll('.chat-room').forEach((v, i) => {
new Chatroom(v as HTMLDivElement, {
title: `Client #${i + 1}`
});
});
export { };