In a React app
<Link to={`/person/${person.id}`}>Person Link</Link>
results in the following eslint error
The href attribute is required on an anchor. Provide a valid, navigable address as the href value jsx-a11y/anchor-is-valid
The Link component results in a valid href
attribute.
<a href="#/person/2">Person Link</a>
What is the point of this error? How do I fix this?
Any help would be greatly appreciated!