JSFiddle - React, Tailwind, and code Playground
by krimple
HTML
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.3/angular.js"></script>
<div ng-app='myApp'>
<div ng-controller='myController'>
Sometimes
<span ng-message></span>
</div>
</div>
JavaScript
angular.module('myApp', [])
.controller('myController',
function($scope) {
$scope.message = 'hiya';
}).directive('message', function() {
return {
template: 'Hi there {{message}}'
};
});