new.fosc.space/src/components/NavItem.astro

9 lines
138 B
Plaintext

---
interface Props {
href: string;
title: string;
}
const { href, title } = Astro.props;
---
<li><a href={href}>{title}</a></li>