JSFiddle - React, Tailwind, and code Playground
by Jscaptcha
HTML
<div ng-app = 'myApp' ng-controller='myController'>
<div my-directive>
</div>
</div>
JavaScript
var myApp = angular.module('myApp',[]);
myApp.directive('myDirective',myDirective)
function myDirective()
{
return {
template:'<strong></strong>'
}
}
function myController ($scope)
{
$scope.message ='Hello Good Morning'
}