JSFiddle - React, Tailwind, and code Playground

by ilapawar

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.0/angular.js"></script>
<body ng-app="clientApp">
<div wizard>
scsc
</div>
</body>
<script>
var App = angular.module('clientApp',[]);
</script>

JavaScript

'use strict';


var myApp = angular.module('clientApp');
myApp.directive('wizard', function($scope) {
return{
  restrict:'A',
  translude;true,
  template:'<div>cccvc</div>';
}
});