Miao-Yunzai/component/NavItem.tsx

14 lines
254 B
TypeScript
Raw Permalink Normal View History

2024-06-17 22:52:15 +08:00
import React from 'react'
2024-06-15 11:18:45 +08:00
export default function NavItem({ href, children }) {
2024-06-17 22:52:15 +08:00
return (
<li>
<a
href={href}
className={`block px-3 py-2 rounded-md bg-sky-500 text-white`}
>
{children}
</a>
</li>
)
}