blob: 145a7d64c52bf2532cc8dc1c68de7d055b90fc1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
---
import Layout from './Layout.astro';
interface Props {
title: string;
}
const { title } = Astro.props;
---
<Layout title={title}>
<main>
<slot />
</main>
</Layout>
|