JSFiddle - React, Tailwind, and code Playground

HTML

<div ng-controller="ctrl">

   <div ng-include="'partial.html'"></div>


</div>


<script type="text/ng-template" id="partial.html">
   <div>The name is {{ name }}</div>
</script>

JavaScript

var myApp = angular.module('myApp',[]);
myApp.controller('ctrl', function($scope) {
      $scope.name = "John"; 
});