JSFiddle - React, Tailwind, and code Playground

by Zaiste

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>
</body>

JavaScript

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

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