JSFiddle - React, Tailwind, and code Playground
by dougneiner
HTML
<script src="https://raw.github.com/appendto/amplify/master/core/amplify.core.js"></script>
<script src="https://raw.github.com/appendto/amplify/master/request/amplify.request.js"></script>
JavaScript
amplify.request.define( "shots", "ajax", {
url: "http://api.dribbble.com/shots/{type}",
dataType: "jsonp",
data: {
type: "popular"
}
});
amplify.request( "shots", function ( data ) {
console.log( data );
});