'how can i change the background color of navbar on scroll

on scroll how can change the background color of navbar?

const [colorChange, setColorChange]=useState(false)
 
 const changeColor=()=>{
   if(window.scrollY >=100){
     setColorChange(true)
   }
   else{
     setColorChange(false)
   }
 }


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source