function Weather(weather) {
return [
Current Weather
,
New York, NY
,
78°
];
}
function Weather(weather) {
return [React.createElement(
"h2",
null,
"Current Weather"
), React.createElement(
"address",
null,
"New York, NY"
), React.createElement(
"div",
null,
React.createElement(
"strong",
null,
"78\xB0"
)
)];
}