JSFiddle - React, Tailwind, and code Playground

by Avdhut Sonpethkar

HTML

<div class="container" ng-app="myapp">

<div hello-World></div>
<input type="text" value="data"/>
</div>

JavaScript

var app = angular.module('myapp', []);

app.directive('helloWorld', function() {
  return {
      restrict: 'AE',
      replace: 'true',
      template: '<h3>Hello World!!</h3>'
  };
});