#Disable Link from "@remix-run/react"

1 messages · Page 1 of 1 (latest)

stark reef
#

How could I disable a <Link /> when a condition is true?

distant owl
#

For accessibility you could do:

  • add aria-disabled: true
  • if you go with the change the element approach make sure to add the role="link" so screen readers know it is a disabled link.
stark reef
#

thank you 🙏