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 8433a71 commit ad87572Copy full SHA for ad87572
documentation/docs/06-runtime/01-stores.md
@@ -49,7 +49,7 @@ export const userState = $state({
49
```svelte
50
<!--- file: App.svelte --->
51
<script>
52
- import { userState } from './state.svelte';
+ import { userState } from './state.svelte.js';
53
</script>
54
55
<p>User name: {userState.name}</p>
documentation/docs/06-runtime/02-context.md
@@ -22,7 +22,7 @@ export const myGlobalState = $state({
22
23
24
25
- import { myGlobalState } from './state.svelte';
+ import { myGlobalState } from './state.svelte.js';
26
// ...
27
28
```
0 commit comments