import React from "react"; import styles from "./styles.module.css"; class Weather extends React.Component { constructor(props) { super(props); this.state = { show: true, }; this.props = { name : '', temperature : '', temperatureUnit : '', detailedForecast : '', } } render() { return (
×

{this.props.name}

{this.props.temperature}

{this.props.temperatureUnit}

{this.props.detailedForecast}

); } } export default Weather;