feat(search): add Search Intelligence module
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-trending-searches',
|
||||
standalone: true,
|
||||
templateUrl: './trending-searches.component.html',
|
||||
styleUrls: ['./trending-searches.component.scss'],
|
||||
changeDetection: ChangeDetectionStrategy.OnPush
|
||||
})
|
||||
export class TrendingSearchesComponent {
|
||||
@Input() title = '';
|
||||
@Input() items: string[] = [];
|
||||
|
||||
@Output() selected = new EventEmitter<string>();
|
||||
}
|
||||
Reference in New Issue
Block a user