I'm trying to change the background color of my navbar section on scroll, but I've had no luck so far.
Below is the code I have been using:
const [colorChange, setColorChange] = useState(false);
const changeColor = () => {
if (window.scrollY >= 120) {
setColorChange(true);
} else {
setColorChange(false);
}
}