mirror of https://github.com/sveltejs/svelte
fix claim_text (#6275)
parent
b3a642c3d3
commit
94bfeae5d5
@ -0,0 +1,5 @@
|
||||
<svelte:head>
|
||||
<title>Title</title>
|
||||
</svelte:head>
|
||||
|
||||
<main>There should be one</main>
|
@ -0,0 +1,2 @@
|
||||
<p>This <code>p</code> and the <code>slot</code> below are direct children of the root.</p>
|
||||
<slot />
|
@ -0,0 +1,3 @@
|
||||
<p>This <code>p</code> and the <code>slot</code> below are direct children of the root.</p>
|
||||
|
||||
<main>There should be one</main>
|
@ -0,0 +1,5 @@
|
||||
<p>This <code>p</code> and the <code>slot</code> below are direct children of the root.</p>
|
||||
|
||||
<main>There should be one</main>
|
||||
|
||||
<!-- need extra space after <main> -->
|
@ -0,0 +1,8 @@
|
||||
<script>
|
||||
import Layout from './Layout.svelte';
|
||||
import Component from './Component.svelte';
|
||||
</script>
|
||||
|
||||
<Layout>
|
||||
<Component />
|
||||
</Layout>
|
Loading…
Reference in new issue