import React from 'react'; import {NavLink} from 'react-router-dom'; import classnames from 'classnames'; import styles from './styles.css'; export default function SidebarLink({href, label}) { const isExternal = /^(https?:|\/\/)/.test(href); const Link = isExternal ? // eslint-disable-next-line jsx-a11y/anchor-has-content ({to, activeClassName, ...linkProps}) => : NavLink; return (