mirror of
https://codeberg.org/emersion/gamja.git
synced 2024-11-14 19:05:01 -05:00
b449ace4b4
Under the hood, preact is used to reduce dependency size. We still don't have a build stage, so htm is used instead of JSX.
16 lines
333 B
HTML
16 lines
333 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>IRC client</title>
|
|
<link rel="stylesheet" href="/style.css">
|
|
</head>
|
|
<body>
|
|
<script type="module">
|
|
import { html, render } from "/lib/index.js";
|
|
import App from "/components/app.js";
|
|
|
|
render(html`<${App}/>`, document.body);
|
|
</script>
|
|
</body>
|
|
</html>
|