JSFiddle - React, Tailwind, and code Playground

by Stefano Bertoli

HTML

<div ng-app>
    <div ng-controller="HController">
        <input ng-model="greetings.text">
            <p>
                {{greetings.text}}, {{greetings.name}}
            </p>
        </input>
        </div>
    </div>

JavaScript

function HController ($scope){
    $scope.greetings={text:"hello", name:"michele"};
}