JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://cdn.rawgit.com/alvarojoao/angular-image-fallback/master/angular.img-fallback.js"></script>
<div ng-app="myApp">
    <div ng-controller="MyCtrl">Hello, {{name}}! <br/>
        <br/>
        Working fine:<br/>
        <img style='width:30%;' image="https://raw.githubusercontent.com/plu/JPSimulatorHacks/master/Data/test.png">
             <br/>
        Fallback holder:<br/>
        <img style='width:30%;' image="https://raw.githubusercontent.com/plu/JPSimulatorHacks/master/Data/test.pngError"> 
        <br/>
         Custom Fallback holder:<br/>
        <img style='width:30%;' image="https://raw.githubusercontent.com/plu/JPSimulatorHacks/master/Data/test.png" image-holder= "https://avatars1.githubusercontent.com/u/13591121?v=3&s=96"> 
    </div>
</div>

JavaScript

var myApp = angular.module('myApp', ['angularImgFallback']);

//myApp.directive('myDirective', function() {});
//myApp.factory('myService', function() {});

function MyCtrl($scope) {
    $scope.name = 'Tester';
}