Skip to content

Instantly share code, notes, and snippets.

@01Clarian
Created November 16, 2019 15:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 01Clarian/f0ea51637e3eb441abbc7a7b042541ad to your computer and use it in GitHub Desktop.
Save 01Clarian/f0ea51637e3eb441abbc7a7b042541ad to your computer and use it in GitHub Desktop.
Building Weathe.js Component
import React from 'react'
const Weather = ({description, city, country, error, temperature}) => {
return (
<div>
{city && country && <p>{city}, {country}</p>}
{temperature && <p>{temperature}</p>}
{description && <p> {description}</p>}
{error && <p>{error}</p>}
</div>
)
}
export default Weather;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment