JSFiddle - React, Tailwind, and code Playground
by Daniel Lamb
HTML
<div ng-app="myApp">
<button>Say it</button>
</div>
JavaScript
angular.module('myApp', []).directive('button', function () {
return {
restrict: 'E',
link: function ($scope, elem, attr) {
elem.bind('click', function (e) {
alert('Hello World');
});
}
};
});