JSFiddle - React, Tailwind, and code Playground

by Pedro Pinto

HTML

<div ng-app>
    <div>
        <input type="text" ng-model="mytext" ng-click="src='click'" ng-keyup="src='key'">
        <p>text:</p>
        <pre>{{mytext}}</pre>
        <p>event:</p>
        <pre>{{src}}</pre>
    </div>
</div>