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

15 lines
163 B
Plaintext

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