progress wip. separated out chat input component and its respective methods.

This commit is contained in:
Ginger Wong
2020-08-14 04:19:19 -07:00
parent 3814c24cab
commit 63d7671fed
9 changed files with 392 additions and 115 deletions

View File

@@ -14,7 +14,7 @@
<script type="module">
import { render, html } from "https://unpkg.com/htm/preact/index.mjs?module";
import { StandaloneChat } from './js/chat/standalone.js';
import StandaloneChat from './js/chat/standalone.js';
(function () {
render(html`<${StandaloneChat} />`, document.getElementById("chat-container"));
})();