Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ANUPAMCHAUDHARY1117/fd99e3370b13a1721405ef6f878fd548 to your computer and use it in GitHub Desktop.
Save ANUPAMCHAUDHARY1117/fd99e3370b13a1721405ef6f878fd548 to your computer and use it in GitHub Desktop.
import React from 'react';
const ImageComponent = ({ src }) => {
return <img src={src} alt='Avatar' style={{ width: '50%' }} />;
};
export default ImageComponent;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment