We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f59122 commit da565f5Copy full SHA for da565f5
playgrounds/sandbox/Wrapper.svelte
@@ -0,0 +1,9 @@
1
+<script>
2
+ import App from './src/App.svelte';
3
+</script>
4
+
5
+<svelte:boundary>
6
+ <App />
7
8
+ {#snippet pending()}{/snippet}
9
+</svelte:boundary>
playgrounds/sandbox/index.html
@@ -12,7 +12,7 @@
12
13
<script type="module">
14
import { mount, hydrate, unmount } from 'svelte';
15
- import App from '/src/App.svelte';
+ import App from '/Wrapper.svelte';
16
17
globalThis.delayed = (v, ms = 1000) => {
18
return new Promise((f) => {
0 commit comments