astro/packages/integrations/mdx/test/fixtures/css-head-mdx/src/components/MDXWrapper.astro
Matthew Phillips 79783fc018
Fix head injection in body with slots.render() and head buffering (#6216)
* Fix head injection in body with slots.render() and head buffering

* Adding a changeset

* An MDX test too
2023-02-13 07:49:10 -05:00

9 lines
149 B
Text

---
import Component from "./GenericComponent.astro";
---
<div>
<slot name="title" />
<slot name="intro" class="inline" />
<Component />
</div>