This repository has been archived on 2025-03-25. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
little-lemon/src/components/NavLink.jsx
2023-07-29 15:59:10 -04:00

12 lines
232 B
JavaScript

import { NavLink as Link } from "react-router-dom"
export const NavLink = ({ to, children }) => (
<Link
to={to}
className={({ isActive, isPending }) =>
isActive || isPending ? "selected" : ""
}
>
{children}
</Link>
)