JSFiddle - React, Tailwind, and code Playground

by Steven Senkus

HTML

<div ng-app="myApp">
    <div ng-controller="displayController">
    {{text}}
    
    
</div>

JavaScript

var app = angular.module('myApp',[]);
app.controller('displayController', ['$scope', function($scope) {
    $scope.text = 'sdfsdf';

}])