JSFiddle - React, Tailwind, and code Playground

by rogeriolino

HTML

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<div class="container" ng-app="myApp">
    <div ng-controller="TestController">
        
        <h1>Team</h1>
        
        
        <ul>
            <li ng-repeat="developer in developers | filter: query">
                {{developer.name}}
            </li>
        </ul>

    </div>
</div>

CSS

body {
}

JavaScript

(function() {    
    'use strict';

    angular.module('myApp', [])
    .controller('TestController', function($scope) {
        $scope.query = '';
        $scope.developers = [
            { name: 'Danilo' },
            { name: 'Laerte' },
            { name: 'Rafael' },
            { name: 'Rogério' },
        ];
    });
    
})();