JSFiddle - React, Tailwind, and code Playground
by Shidhin C R
HTML
<div ng-app="app">
<dad></dad>
</div>
JavaScript
var app = angular.module('app', []);
app.directive('dad', function () {
return {
restrict: 'EA',
template: '<div>{{greeting}}{{name}}</div>',
link: function(scope,elem,attr){
scope.name = 'Paul';
scope.greeting = 'Hey, I am ';
}
};
});