forked from CringeStudios/gamja

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.
17 lines
333 B
HTML
17 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>
|