deployment-talks/chat-app/src/components/ChatApp.js

12 lines
241 B
JavaScript
Raw Normal View History

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)
]);
}
};