JSFiddle - React, Tailwind, and code Playground

by Alex Romero

HTML

<div ng-app="app">
      <div bill-dir></div>
      
  </div>

JavaScript

var app = angular.module("app", []);
function MyCtrl($scope){
}

app.directive("billDir", function() {
    return {
        replace: true,
        template: '<div><div draggable>hello {{msg}}</div></div>',
        link: function (scope, element, attrs) {
            scope.msg = "world!";
        }
    }
});