JSFiddle - React, Tailwind, and code Playground

by de Montalembert Jonathan

HTML

<div ng-controller="BadController">
    {{hello}}
</div>

JavaScript

angular.module("myApp", [])
  // BadController cannot be invoked, because
  // the dependencies to be injected are not
  // explicitly listed.
  .controller("BadController", function($scope, $http, $filter) {
    $scope.hello = 'world'
  });

angular.bootstrap(document, ['myApp'], {
  strictDi: true
});