import { h, render } from 'preact' import { App } from './client/app.tsx' window['h'] = h declare global { interface Window { h: typeof h } } render(, document.body)