12 lines
241 B
JavaScript
12 lines
241 B
JavaScript
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)
|
|
]);
|
|
}
|
|
};
|