JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="//cdn.jsdelivr.net/foundation/4.3.1/css/foundation.min.css">
<body ng-app="app" ng-controller="MainCtrl">
  <h3>{{ message }}</h3>
  <copyright></copyright>
</body>

JavaScript

var app = angular.module('app', []);

app.controller('MainCtrl', function($scope) {
    $scope.message = "Hi, I'm an AngularJS app";
});

app.directive('copyright', function() {
  return {
    restrict: "M",
    replace: true,
    template: "<p>Copyright 2013</p>"
  }
});