JSFiddle - React, Tailwind, and code Playground
by alirokni
HTML
<base href="https://polygit.org/components/">
<script src="webcomponentsjs/webcomponents-lite.min.js"></script>
<link rel="import" href="components/iron-ajax/iron-ajax.html">
<dom-module id="weather-element">
<template>
<iron-ajax auto
url="http://api.openweathermap.org/data/2.5/weather?q=NYC&units=imperial"
last-response="{{resp}}"></iron-ajax>
NYC temp: <span>{{resp.main.temp}}</span> F
</template>
<script>Polymer();</script>
</dom-module>
<weather-element></weather-element>