JSFiddle - React, Tailwind, and code Playground
by fangunxs
HTML
<div ng-controller='HelloController'>
<input ng-model='greeting.text'>
<p>{{greeting.text}}, World</p>
</div>
JavaScript
function HelloController($scope) {
$scope.greeting = { text: 'Hello' };
}