JSFiddle - React, Tailwind, and code Playground

by Rob Rothe

HTML

<div ng-app="app">

  <div ng-controller="TestCtrl as ctrl">
    Welcome, {{ ctrl.name }}
  </div>

</div>

JavaScript

angular
  .module('app', [])
  .controller('TestCtrl', TestCtrl);

function TestCtrl() {
  var vm = this;

  vm.name = 'Rob';
}