mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-17 23:13:04 +00:00
13 lines
302 B
TypeScript
13 lines
302 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'ds-search-page',
|
|
templateUrl: './search-page.component.html',
|
|
})
|
|
/**
|
|
* This component represents the whole search page
|
|
* It renders search results depending on the current search options
|
|
*/
|
|
export class SearchPageComponent {
|
|
}
|