JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<form ng-app name="myForm">
<div ng-init="myInput = 'ABC'">
<input name="myInput" ng-model="myInput" required>
<h1>{{myForm.myInput.$valid}}</h1>
</div>
</form>