We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
import React, { Component } from 'react' import { connect } from 'react-redux' import { Sparklines, SparklinesLine } from 'react-sparklines'; class WeatherList extends Component { renderWeather(cityData) { // console.log(cityData) const name = cityData.city.name const temps = cityData.list.map(weather=>weather.main.temp) return ( <tr key={name}> <td>{name}</td> <td> <Sparklines height={120} width={180} data={temps}> <sparklinesLine color="red" /> </Sparklines> </td> </tr> ) } render() { return ( <table className="table table-hover"> <thead> <tr> <th>City</th> <th>Temperature</th> <th>Pressure</th> <th>Humidity</th> </tr> </thead> <tbody> {this.props.weather.map(this.renderWeather)} </tbody> </table> ) } } function mapStateToProps(state) { return { weather: state.weather } } export default connect(mapStateToProps)(WeatherList)
I'm wrote my code above. and modify sparkline 1.7 to 1.6 Error was missing but never showing sparkline in my browser.. Anyone know?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm wrote my code above. and modify sparkline 1.7 to 1.6
Error was missing but never showing sparkline in my browser..
Anyone know?
The text was updated successfully, but these errors were encountered: