In JSX, how do you reference a value from props from inside a quoted attribute value?
props
For example:
Best practices are to add getter method for that :
getImageURI() { return "images/" + this.props.image; }
Then , if you have more logic later on, you can maintain the code smoothly.