SyntaxFix
Write A Post
Hire A Developer
Questions
Best practices are to add getter method for that :
getImageURI() { return "images/" + this.props.image; } <img className="image" src={this.getImageURI()} />
Then , if you have more logic later on, you can maintain the code smoothly.