I am getting some data from server and using ngFor to show them (It's search feature) but when there's no result, I want to show text saying 'There's no result"
How can I do this?
I tried this so far but this isn't working.
<div *ngIf="teaInfo != '{}'">
<div class="starter-template text-xs-center">
<h5 style = "text-align:center">No result</h5>
</div>
</div>