Files
marketplaces/src/app/features/search/components/trending-searches/trending-searches.component.html

9 lines
243 B
HTML
Raw Normal View History

<div class="trending-searches">
<strong>{{ title }}</strong>
<div class="chip-list">
@for (item of items; track $index) {
<button type="button" class="chip" (click)="selected.emit(item)">{{ item }}</button>
}
</div>
</div>