1
Fork 0
shareable-configs/packages/test-samples/samples/sample.astro

12 lines
142 B
Plaintext

---
export type Props = {
title?: string;
};
const title = Astro.props.title ?? "Sample Astro";
---
<header>
<h1>{title}</h1>
</header>