JSFiddle - React, Tailwind, and code Playground
HTML
<div ng-app="biApp">
<google-maps-symbol></google-maps-symbol>
</div>
JavaScript
var appModule = angular.module('biApp', []);
appModule.directive('googleMapsSymbol', function () {
console.log("Directive was run");
return {
link: function (scope, elem, attrs) {
console.log("Link was called");
}
};
});