JSFiddle - React, Tailwind, and code Playground

HTML

<div ng-app ng-controller="Ctrl">
  <label>Name:</label>
  <input type="text" ng-model="yourNameInput" placeholder="Enter a name here" ng-change="window.yourName = yourNameInput">
  <input type="button" onClick="console.log(yourName);" value="Log">
  <hr>
  <h1 ng-bind-template="Hello, {{yourNameInput}}"></h1>
</div>

JavaScript

function Ctrl($scope, $window) {
    $scope.window = $window;
}