JSFiddle - React, Tailwind, and code Playground
by Alex Romero
HTML
<div ng-app="app">
<bill-info></bill-info>
</div>
JavaScript
var app = angular.module('app', []);
app.directive("billInfo", function() {
return {
restrict: 'E',
replace: true,
template: '<div><div draggable>hello {{msg}}</div></div>',
link: function (scope, element, attrs) {
scope.msg = "world! It Works!";
}
}
});