Created
May 12, 2018 14:33
-
-
Save imparvez/b55090583ad39bd32af88eaf6012f681 to your computer and use it in GitHub Desktop.
Food List App
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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