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.
Tony Marsella beae486c3a consistent naming convention
initial implement statement of faith section
2023-06-26 17:38:32 -07:00

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;