Files
website/astro/src/components/blogs/BlogIndex.astro
2026-03-20 16:40:21 +01:00

10 lines
103 B
Plaintext

---
interface Props {
page: BlogIndex;
}
const { page } = Astro.props;
---
<div>Blog Index</div>