Skip to content

Instantly share code, notes, and snippets.

@imparvez
Created May 14, 2018 07:24
Show Gist options
  • Save imparvez/6ddb9152a7ec3f1ed273396844af47de to your computer and use it in GitHub Desktop.
Save imparvez/6ddb9152a7ec3f1ed273396844af47de to your computer and use it in GitHub Desktop.
Food List React App
import React, { Component } from 'react';
import Title from './Title';
import Image from './Image';
export default class RecipeCard extends Component {
render(){
return(
<div>
{this.props.meals.map((item, index) => {
return (
<a
key={index}
href={item.strSource}>
<Image source={item.strMealThumb} text={item.strMeal} />
<Title title={item.strMeal} />
</a>
)
})}
</div>
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment