blob: eff37fbdec1704f49e950b2e8e5e5f1e3c1da84c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
---
import BaseLayout from "./BaseLayout.astro";
const { title, description } = Astro.props;
---
<BaseLayout title={title} description={description}>
<slot />
</BaseLayout>
|