1 2 3 4 5 6 7 8 9 10 11 12 13
<script type="module" hoist> import { h, render } from 'preact'; const mount = document.querySelector('#inline-hoist'); function App() { return h('strong', null, 'Hello again'); } render(h(App), mount); </script> <div id="inline-hoist"></div>