JSFiddle - React, Tailwind, and code Playground
by jrab227
HTML
<div ng-app="application">
</div>
JavaScript
angular.module('controller', [])
.controller('myController', ['$resource', function ($resource){
var res = $resource('/dataset/' + $routeParams.datasetName + '/analysis/?format=:format',
{
format:'json'
}, {
get:{method:"GET", isArray:true}
});
}])
angular.module('application', ['controller'])