I am trying to change navbar color color depending on the page. I want it to be background: "rgba(255,255,255, .0)" when location path === "/" and white on every other pages.
const root = props.location.pathname
const classes = useStyles()
useEffect(() => {
if (props.location) {
if (props.location.customData === true) {
setOpen(true)
} else {
setOpen(false)
}
}
}, [props.location])