Skip to content

Instantly share code, notes, and snippets.

@ozrabal
Created September 6, 2018 11:25
Show Gist options
  • Select an option

  • Save ozrabal/8c5b3aa59299f5ece82ffa034e023226 to your computer and use it in GitHub Desktop.

Select an option

Save ozrabal/8c5b3aa59299f5ece82ffa034e023226 to your computer and use it in GitHub Desktop.
import { Link } from 'react-router';
import styled from 'styled-components';
const NavItem = styled(Link)`
background-color: blue;
&.${(props) => props.activeClassName} {
background-color: paleturquoise;
}
`;
NavItem.defaultProps = {
activeClassName: 'active',
};
export default NavItem;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment