JSFiddle - React, Tailwind, and code Playground

by Yasser Sinjab

HTML

<div ng-controller='HelloController'>
    <p>{{greeting.text}}, World</p>
</div>

JavaScript

function HelloController($scope) {
    $scope.greeting = {
        text: 'Hello'
    };
}