I am looking for a simple way to filter the *ngFor results from a search box input. The same way as in AngularJS this would work: ng-model="searchBox" / ng-repeat="x in y | filter:searchBox"...
My code is:
<input type="text">
<article *ngFor="let x of y | async | reverse">
<p>Name: {{x.firstName}} {{x.secondName}}, City: {{x.city}}, Phone: {{x.phone}}</p>
</article>