Guest User

Untitled

a guest
Oct 15th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. import React, { Component } from 'react';
  2.  
  3. class Image extends Component {
  4. render() {
  5. const imagePath = '/images/';
  6. const imageURL = imagePath + this.props.src;
  7. return (
  8. <img alt={this.props.src} src={imageURL} />
  9. );
  10. }
  11. }
  12.  
  13. export default Image;
Add Comment
Please, Sign In to add comment