import m from "mithril"; import { ChatApp } from "./ChatApp"; const localState = { messages: [] } m.mount(document.getElementById("app"), ChatApp);