79783fc018
* Fix head injection in body with slots.render() and head buffering * Adding a changeset * An MDX test too
9 lines
149 B
Text
9 lines
149 B
Text
---
|
|
import Component from "./GenericComponent.astro";
|
|
---
|
|
|
|
<div>
|
|
<slot name="title" />
|
|
<slot name="intro" class="inline" />
|
|
<Component />
|
|
</div>
|