JSFiddle - React, Tailwind, and code Playground

HTML

<div ng-app="animateApp" ng-controller="testController">
	<div ng-bind-html-unsafe="fruitsView"></div>
</div>

JavaScript

var animateAppModule = angular.module('animateApp', []);
function testController($scope){	
	$scope.arr = ["APPLE", "BANANA"];
	$scope.fruitsView = '<div><p ng-repeat="each in arr">{{each}}</p></div>';
}