While I make write code with Typescript + React, I found some error.
When I make type/value in <a> tag attribute, I get compile Error.
<a value='Hello' type='button'>Search</a>
This code get occur error
TS2339:Property 'value' does not exist on type 'DetailedHTMLProps<AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>'.
How can I solve this compile problem? I search few hours but I cannot get solution :(
aelement doesn't have a value attributeawithinput,ahas neithervaluenortype, whereasinputhas them both.