JSFiddle - React, Tailwind, and code Playground

by amoiseev

HTML

<div ng-app="test">
    <h1 ng-controller="MainCtrl">{{message}}</h1>
</div>

JavaScript

angular.module('test', [])
    .controller('MainCtrl', function ($scope) {
        $scope.message = 'Test App';
        $scope.model = this;
    });