deployment-talks/chat-app/frontend/MessageBox.js

8 lines
142 B
JavaScript
Raw Normal View History

import m from "mithril";
export const MessageBox = {
view: function () {
return m("div", { id: "message-box" }, "Do Something");
}
}