summaryrefslogtreecommitdiff
path: root/src/layouts/Article.astro
blob: 5e95147811d70fb16b9e8820a809da0ae3ac0cca (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}>
  <article>
    <slot />
  </article>
</Layout>