JSFiddle - React, Tailwind, and code Playground

by darcyclarke

JavaScript

$.ajax({
    url: "http://api.github.com/users/paulirish/repos",
    data: {},
    dataType: "jsonp",
    success: function(result){
        console.log(result);
    },
    error: function(){
       console.log('eee');   
    }
    
});