start a video-only page; fix some styles

This commit is contained in:
Ginger Wong
2020-08-23 21:23:16 -07:00
parent a07ad8d693
commit 22e16b67d7
10 changed files with 681 additions and 687 deletions

View File

@@ -11,16 +11,16 @@
</head>
<body class="messages-only">
<body>
<div id="chat-container"></div>
<div id="messages-only"></div>
<script type="module">
import { render, html } from "https://unpkg.com/htm/preact/index.mjs?module";
import StandaloneChat from './js/app-standalong-chat.js';
import StandaloneChat from './js/app-standalone-chat.js';
(function () {
render(html`<${StandaloneChat} messagesOnly />`, document.getElementById("chat-container"));
render(html`<${StandaloneChat} messagesOnly />`, document.getElementById("messages-only"));
})();
</script>
</body>