JSFiddle - React, Tailwind, and code Playground

by Stefano Bertoli

HTML

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

        </div>
    </div>

JavaScript

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