import React from 'react' export default function ActivityWeather(props) { const { activity } = props return (
{activity.weather_start && activity.weather_end && (
Start
{`activity
End
{`activity
Temperatures {activity.weather_start.temperature}°C {activity.weather_end.temperature}°C
Temperatures {activity.weather_start.humidity * 100}% {activity.weather_end.humidity * 100}%
Temperatures {activity.weather_start.wind}m/s {activity.weather_end.wind}m/s
)}
) }