2020-08-13 01:28:25 -07:00
|
|
|
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/>
|
2020-10-04 18:43:31 -07:00
|
|
|
<link href="/js/web_modules/tailwindcss/dist/tailwind.min.css" rel="stylesheet" />
|
2020-08-17 09:00:36 -07:00
|
|
|
<link href="./styles/chat.css" rel="stylesheet" />
|
|
|
|
<link href="./styles/standalone-chat.css" rel="stylesheet" />
|
2020-08-13 01:28:25 -07:00
|
|
|
</head>
|
|
|
|
|
2020-08-23 21:23:16 -07:00
|
|
|
<body>
|
|
|
|
<div id="messages-only"></div>
|
2020-08-13 01:28:25 -07:00
|
|
|
|
|
|
|
<script type="module">
|
2020-10-04 18:43:31 -07:00
|
|
|
import { h, render } from '/js/web_modules/preact.js';
|
|
|
|
import htm from '/js/web_modules/htm.js';
|
|
|
|
const html = htm.bind(h);
|
|
|
|
|
2020-08-23 21:23:16 -07:00
|
|
|
import StandaloneChat from './js/app-standalone-chat.js';
|
2020-08-26 00:51:40 -07:00
|
|
|
render(
|
|
|
|
html`<${StandaloneChat} messagesOnly />`, document.getElementById("messages-only")
|
|
|
|
);
|
2020-08-13 01:28:25 -07:00
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|