summaryrefslogtreecommitdiff
path: root/examples/fast-build/src/components/InlineHoisted.astro
blob: ba6c0ab4d4e0b5e2483dfead089508cbcb0d0c25 (plain) (blame)
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>