JSFiddle - React, Tailwind, and code Playground
by krimple
HTML
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.3/angular.js"></script>
<div ng-app='myApp'>
<div ng-controller='myController'>
<p>Say hello, Angular!</p>
<p><ng-message message="Hiya!"/></p>
</div>
</div>
JavaScript
angular.module('myApp', [])
.controller('myController',
function($scope) {
})
.directive('ngMessage', function() {
return {
restrict: 'E',
template: '{{message}}'
};
});