diff options
Diffstat (limited to 'packages/astro/test/fixtures/astro-slots/src/components/Slotted.astro')
-rw-r--r-- | packages/astro/test/fixtures/astro-slots/src/components/Slotted.astro | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/packages/astro/test/fixtures/astro-slots/src/components/Slotted.astro b/packages/astro/test/fixtures/astro-slots/src/components/Slotted.astro new file mode 100644 index 000000000..21f959ebb --- /dev/null +++ b/packages/astro/test/fixtures/astro-slots/src/components/Slotted.astro @@ -0,0 +1,15 @@ +<div id="a"> + <slot name="a" /> +</div> + +<div id="b"> + <slot name="b" /> +</div> + +<div id="c"> + <slot name="c" /> +</div> + +<div id="default"> + <slot /> +</div> |