File tree 2 files changed +3
-6
lines changed
2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 25
25
},
26
26
{
27
27
"text" : " Runes" ,
28
- "items" : [
29
- { "file" : " runes/state.md" },
30
- { "file" : " runes/side-effects.md" }
31
- ]
28
+ "items" : [{ "file" : " runes/state.md" }, { "file" : " runes/side-effects.md" }]
32
29
},
33
30
{
34
31
"text" : " Runtime" ,
47
44
{ "file" : " misc/typescript.md" },
48
45
{ "file" : " misc/custom-elements.md" },
49
46
{ "file" : " misc/reactivity-indepth.md" },
50
- { "file" : " misc/svelte-5-migration-guide.md" },
47
+ { "file" : " misc/svelte-5-migration-guide.md" }
51
48
]
52
49
},
53
50
{
Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ Using it together with `<svelte:component>` to restrict what kinds of component
170
170
interface Props {
171
171
// only components that have at most the "prop"
172
172
// property required can be passed
173
- component: Component<{ prop: string }>
173
+ component: Component<{ prop: string }>;
174
174
}
175
175
176
176
let { component }: Props = $props();
You can’t perform that action at this time.
0 commit comments