mirror of https://github.com/sveltejs/svelte
parent
d4bb5f4a7a
commit
1bfda9c114
@ -0,0 +1,2 @@
|
|||||||
|
import Widget from "./Widget.svelte";
|
||||||
|
export default Widget;
|
@ -0,0 +1,4 @@
|
|||||||
|
<script>
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div>The Widget</div>
|
@ -0,0 +1 @@
|
|||||||
|
<div>The Widget</div>
|
@ -0,0 +1,5 @@
|
|||||||
|
<script>
|
||||||
|
import Widget from "./Widget.mjs";
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<Widget />
|
Loading…
Reference in new issue