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