JSFiddle - React, Tailwind, and code Playground

by Jonathan Smith

HTML

<div ng-app ng-controller="ctrl">
    <input type="text" ng-model="name" />
    <h2>Hello {{ name }}</h2>
</div>

JavaScript

function ctrl($scope) {

}