import m from "mithril"; import { MessageBox } from "./MessageBox"; export const ChatApp = { view: function () { return m("div", { class: "container" }, [ m("h1", "A Stupid Chat Application"), m(MessageBox) ]); } };