JSFiddle - React, Tailwind, and code Playground

by g

HTML

<ul ng-controller='Ctrl'>
    <li ng-repeat="item in list | filter: clientFilter ">
        {{item.name}} {{item.adress}}
    </li>
    <input ng-model="clientFilter.name" />
</ul>

JavaScript

angular.module('app', [])
.controller('Ctrl', function($scope) {
    $scope.list = [
        { name: 'jon', address: 'rue bois' },
        { name: 'jak', address: 'rue lpup' },
    ];
});

angular.bootstrap(document.body, ['app']);