JSFiddle - React, Tailwind, and code Playground

by chovy

HTML

<div ng-app="app" ng-controller="MainCtrl">
    {{name}}
</div>

JavaScript

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

app.controller('MainCtrl', function($scope) {
  $scope.name = 'World';
});