Is there a way to modify the text color of the links within the navbar using React?
navLink1{
color: black;
}
<div className="left-navlinks">
<img className="logo" src={logo}/>
<Link to="/"></Link>
<Link to="/home"> <div className="navlink1">Home</div></Link>
<Link to="/about"> <div className="navlink2">About</div></Link>
</div>
I attempted to utilize the hover property for this purpose, however, it did not produce the desired result. I am looking to have the text color change to blue when a link is clicked and selected.