I'm using Link component from react-scroll library.
To add pseudo-class .active, I can use activeClass prop, but since I don't have any .css files in my project, to set my link to active I need to directly interfere with JS/TS or create .css file for that.
Can you add some prop that would allow interaction with css on active pseudo-class directly?
I'm using
Link
component from react-scroll library.To add pseudo-class
.active
, I can useactiveClass
prop, but since I don't have any.css
files in my project, to set my link toactive
I need to directly interfere with JS/TS or create.css
file for that.Can you add some prop that would allow interaction with css on active pseudo-class directly?