Skip to content

Instantly share code, notes, and snippets.

@TechWithTy
Last active August 13, 2019 08:59
Show Gist options
  • Save TechWithTy/4adb05bc3ae8c045654e5572a92100bf to your computer and use it in GitHub Desktop.
Save TechWithTy/4adb05bc3ae8c045654e5572a92100bf to your computer and use it in GitHub Desktop.
const params = props.location.pathname.toLowerCase();
if (params.includes('womens')) {
setNav('#ed0070c9');
} else if (params.includes('mens')) {
setNav('#e12626c9');
} else if (params.includes('device')) {
setNav('rgba(28, 228, 248, 0.79)');
} else if (params.includes('pipe')) {
setNav('#c7d1d9b0');
} else if (params.includes('smoke')) {
setNav('#c7d1d9b0');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment