This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.

15 lines
256 B
JavaScript

import Link from "next/link";
const NavItem = ({ text, href, active }) => {
return (
<Link href={href} className={`nav__item ${
active ? "active" : ""
}`}>
{text}
</Link>
);
};
export default NavItem;