JSFiddle - React, Tailwind, and code Playground
by Moien Tajik
HTML
<body>
<div ng-app="myApp" ng-controller="myCtrl">
Full Name is : {{firstName + " " + lastName}}
<div angular-directive>
</div>
</div>
<script>
var app = angular.module("myApp", []);
app.directive("angularDirective", function() {
return {
template: "Hello World , This is a test from Angular JS Directives !"
};
});
app.controller("myCtrl", function($scope) {
$scope.firstName = "Moein";
$scope.lastName = "Tajik";
});
</script>
</body>