mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
15 lines
534 B
TypeScript
15 lines
534 B
TypeScript
import { Component } from '@angular/core';
|
|
import {
|
|
SearchFormComponent as BaseComponent,
|
|
} from '../../../../../app/shared/search-form/search-form.component';
|
|
|
|
@Component({
|
|
selector: 'ds-search-form',
|
|
// styleUrls: ['./search-form.component.scss'],
|
|
styleUrls: ['../../../../../app/shared/search-form/search-form.component.scss'],
|
|
// templateUrl: './search-form.component.html',
|
|
templateUrl: '../../../../../app/shared/search-form/search-form.component.html',
|
|
})
|
|
export class SearchFormComponent extends BaseComponent {
|
|
}
|