5 lines
113 B
JavaScript
5 lines
113 B
JavaScript
|
import m from "mithril";
|
||
|
import { ChatApp } from "./ChatApp";
|
||
|
|
||
|
m.mount(document.getElementById("app"), ChatApp);
|