A question from a new guy in React and JSX. There is a probably a simple answer but I can't find it anywhere :-\
I've this code:
return (<div className='link-container' > <a href="tel: + {this.props.item.value}">{this.props.item.value}</a> </div>); The thing that is not working for me is the concatenation of the href value. Currently, the generated href value is exactly what you see, the {this.props.item.value} isn't replaced with the real value but displayed as a string. I tried many concatenation tricks but nothing seems to work. The only way I manage to make it work is to put the all href value in a different variable like this:
var hrefValue = "tel:" + this.props.item.value; return (<div className='link-container' > <a href={hrefValue}>{this.props.item.value}</a> </div>); This solution works but it looks a little weird to create a new variable for such a thing. Is there a simpler way to do it?
Thanks!