JSFiddle - React, Tailwind, and code Playground

by Marventus

HTML

<!-- Dentro de la directiva -->
<a href="#">My link</a>
<p>
My paragraph
</p>

<!-- Afuera de la directiva -->
<myDirective></myDirective>

JavaScript

var app = angular.module("myModule", []);
app.directive("myDirective", function(){
	var settings = {
  	restrict: 'E',
    templateURL: '/partial/home.html',
    scope: {
    	myScope: '='
    };
  }
  return settings;
})