frontispiece / apps / example / index.ts
index.ts
Raw
import { render } from "preact"
import { html } from "./view/bootstrap"
import { InkStoryView } from "./view/ink-story"
import './index.css'

const Game = () => {
	return html`<${InkStoryView} />`
}

render(html`<${Game} />`, document.getElementById('app') as Element)