How to concatenate {variable} to href tag in react js?

Solution 1:

Try with template literals

href={`mailto: ${entry.email}`}

or

href={"mailto: "+ entry.email}