Advertisement
joygabriel21

Image Component

Jan 21st, 2020
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. import React, {Component} from 'react';
  2. import './style.css';
  3.  
  4. export default class Img extends Component {
  5.  
  6. render() {
  7. return (
  8. <img
  9. width={this.props.width}
  10. height={this.props.height}
  11. src={this.props.src}
  12. alt={this.props.alt}
  13. className={this.props.className}
  14. />
  15. );
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement