JSFiddle - React, Tailwind, and code Playground

by Jacky Xu

HTML

<script src="http://cdn.bootcss.com/angular.js/1.3.14/angular.js"></script>
<body>

<div ng-app="" ng-init="quantity=1;price=5">

    Quantity: <input type="number"	ng-model="quantity"/>
    Costs:    <input type="number" ng-model="price"/>

Total in dollar: {{ quantity * price }}

</div>

</body>