summaryrefslogtreecommitdiff
path: root/src/layouts/Article.astro
blob: 253479b385fd69754f3f9c3a555944b1f70c6827 (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 id="main">
    <slot />
  </article>
</Layout>