JSFiddle - React, Tailwind, and code Playground

by Minko Gechev

HTML

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

JavaScript

angular.module('ng').controller('MainCtrl', function ($scope) {
    $scope.value = "val";
});