JSFiddle - React, Tailwind, and code Playground
by bfelda
HTML
<div ng-app='test'>
{{item}}
</div>
JavaScript
var mod = angular.module('test', []);
mod.controller('testCtrl', function($scope){
$scope.item = "Stuff"
});
by bfelda
<div ng-app='test'>
{{item}}
</div>
var mod = angular.module('test', []);
mod.controller('testCtrl', function($scope){
$scope.item = "Stuff"
});