JSFiddle - React, Tailwind, and code Playground

by Prashanth bhat

HTML

<div id="settingsholder"  ng-controller="MyCtrl">
      <input ng-model="user.firstName" />
      <input ng-model="user.lastName" />
      <input type="button" ng-click="showJson()" value="Object To JSON" />
        <hr/>  
        {{user | json}}
    </div>

JavaScript

function MyCtrl($scope) {

    $scope.user = { };
}