Skip to content

Instantly share code, notes, and snippets.

@imparvez
Created May 12, 2018 14:33
Show Gist options
  • Save imparvez/b55090583ad39bd32af88eaf6012f681 to your computer and use it in GitHub Desktop.
Save imparvez/b55090583ad39bd32af88eaf6012f681 to your computer and use it in GitHub Desktop.
Food List App
import React, { Component } from 'react';
import styled from 'styled-components';
export default class Image extends Component {
render(){
console.log("PROPS=>", this.props);
return(
<ImageComponent src={this.props.source} alt={this.props.text} />
)
}
}
const ImageComponent = styled.img`
width: 100%;
height: 100%;
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment