JSFiddle - React, Tailwind, and code Playground

by selbh

HTML

<div ng-app>
    <p>
        I want this input to update the model on "change" event: <br/>
		<input type="text" ng-model="model"/>
		{{model}}
    </p>
    <br/><br/>
    <hr/>
    <p>
        <i>other place where model can be changed</i>
        <br/>
        This input however should work normally:
    	<input type="text" ng-model="model"/>
    </p>
</div>