JSFiddle - React, Tailwind, and code Playground

by YameenYasin

HTML

<!DOCTYPE html>
<html ng-app>

<head>
    <meta charset="utf-8">
    <title>More Directives</title>
    <script src="//cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.14/angular.min.js"></script>
    <script>
        function testCtrl($scope) {

            $scope.names = ['John Doe', 'Michael Scotfield', 'Denny Morris', 'Comis Carlo'];

        }
    </script>
</head>

<body ng-controller="testCtrl">
    Name:
    <input ng-model="search" type="text" />
    </br>

    <div>
        <ul ng-repeat="name in names">
            <li>{{name}}</li>
        </ul>
    </div>


</body>

</html>