JSFiddle - React, Tailwind, and code Playground

HTML

<div ng-app>
   <div ng-controller="test">
   
      <input type="file" id="logo" name="logo" ng-model="logo">
      <img ng-src="{{logo}}">
      
      <input type="text" ng-model="la">
      <div ng-bind="la"></div>
      
   </div>
</div>

JavaScript

function test($scope){
 $scope.logo = "";
}