As a newcomer to React, I am currently exploring how to create an animated underline effect when hovering over a NavLink
from reactstrap. I have managed to get the underline working on hover thanks to the solution provided at , but I am struggling with implementing the animation.
All the examples I have come across utilize CSS pseudoelements such as ::before
or ::after
in vanilla DOM for similar effects, but my attempts to apply them in React have been unsuccessful.
If anyone has any suggestions or pointers on how to achieve this, I would greatly appreciate it!