Last active
August 13, 2019 08:59
-
-
Save TechWithTy/4adb05bc3ae8c045654e5572a92100bf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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