12 lines
142 B
Plaintext
12 lines
142 B
Plaintext
|
---
|
||
|
export type Props = {
|
||
|
title?: string;
|
||
|
};
|
||
|
|
||
|
const title = Astro.props.title ?? "Sample Astro";
|
||
|
---
|
||
|
|
||
|
<header>
|
||
|
<h1>{title}</h1>
|
||
|
</header>
|