Created
March 17, 2020 23:54
-
-
Save thianlopezz/bdb39fa56da20d2a1cfd48f290b068c2 to your computer and use it in GitHub Desktop.
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 from 'react'; | |
import { Container, Grid } from '@material-ui/core'; | |
import InffectedCountryCard from './InffectedCountryCard'; | |
export default function InffectedCountryList({ inffectedCountries, updatedAt }) { | |
return ( | |
<Container> | |
<h1 style={{ marginBottom: '0' }}>Paises infectados</h1> | |
<p style={{ color: '#0e5077', marginTop: '0' }}>actualizado al {updatedAt}</p> | |
<Grid spacing={1} container> | |
{inffectedCountries.map(country => ( | |
<Grid key={country.country_name} lg={6} item> | |
<InffectedCountryCard {...country} /> | |
</Grid> | |
))} | |
</Grid> | |
</Container> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment