JSFiddle - React, Tailwind, and code Playground

by GruffBunny

HTML

<div ng-app='MyModule' ng-controller='MyController'>
    <p>{{name}}</p>
</div>

JavaScript

angular.module('MyModule', [])

.controller( 'MyController', function($scope){
});