mirror of
https://github.com/valentineus/popov.link.git
synced 2025-06-07 02:23:34 +03:00
10 lines
176 B
Plaintext
10 lines
176 B
Plaintext
---
|
|
import BaseLayout from "./BaseLayout.astro";
|
|
|
|
const { title, description } = Astro.props;
|
|
---
|
|
|
|
<BaseLayout title={title} description={description}>
|
|
<slot />
|
|
</BaseLayout>
|