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

9 lines
163 B
JavaScript
Raw Normal View History

import m from "mithril";
2024-10-01 02:10:35 +00:00
import { ChatApp } from "./components/ChatApp";
2024-10-01 02:07:05 +00:00
const localState = {
messages: []
}
m.mount(document.getElementById("app"), ChatApp);