gamja/index.html

20 lines
435 B
HTML
Raw Normal View History

2020-04-24 13:01:02 -04:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>gamja IRC client</title>
<link rel="stylesheet" href="/style.css">
2020-04-24 13:01:02 -04:00
</head>
<body>
<noscript>
<p>Unfortunately gamja requires JavaScript. Please enable it!</p>
</noscript>
2020-06-14 08:50:59 -04:00
<script type="module">
import { html, render } from "/lib/index.js";
import App from "/components/app.js";
render(html`<${App}/>`, document.body);
2020-06-14 08:50:59 -04:00
</script>
2020-04-24 13:01:02 -04:00
</body>
</html>