12 lines
206 B
Plaintext
12 lines
206 B
Plaintext
---
|
|
import RootLayout from "./RootLayout.astro";
|
|
|
|
const { title } = Astro.props;
|
|
---
|
|
|
|
<RootLayout title={title}>
|
|
<main class="container mx-auto h-fullpage mt-header">
|
|
<slot />
|
|
</main>
|
|
</RootLayout>
|