JSFiddle - React, Tailwind, and code Playground

by hr1383

HTML

<html ng-app>
    
    <body ng-init="models = [['H','a','p','p','y'],['X','m','a','s']]">
     <div ng-repeat="m in models">
         <div ng-repeat="movie in m track by $index">
                  <span class="control-label1">{{movie}}</span>
         </div>
        </div>
    </body>
</html>