10 lines
199 B
TypeScript
10 lines
199 B
TypeScript
|
import { Chatroom } from "./Chatroom";
|
||
|
|
||
|
document.querySelectorAll('.chat-room').forEach((v, i) => {
|
||
|
new Chatroom(v as HTMLDivElement, {
|
||
|
title: `Client #${i + 1}`
|
||
|
});
|
||
|
});
|
||
|
|
||
|
export { };
|