mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-17 15:03:07 +00:00
16 lines
834 B
TypeScript
16 lines
834 B
TypeScript
import { Component } from '@angular/core';
|
|
import { ComcolPageBrowseByComponent as BaseComponent} from '../../../../../app/shared/comcol/comcol-page-browse-by/comcol-page-browse-by.component';
|
|
|
|
/**
|
|
* A component to display the "Browse By" section of a Community or Collection page
|
|
* It expects the ID of the Community or Collection as input to be passed on as a scope
|
|
*/
|
|
@Component({
|
|
selector: 'ds-comcol-page-browse-by',
|
|
// styleUrls: ['./comcol-page-browse-by.component.scss'],
|
|
styleUrls: ['../../../../../app/shared/comcol/comcol-page-browse-by/comcol-page-browse-by.component.scss'],
|
|
// templateUrl: './comcol-page-browse-by.component.html'
|
|
templateUrl: '../../../../../app/shared/comcol/comcol-page-browse-by/comcol-page-browse-by.component.html'
|
|
})
|
|
export class ComcolPageBrowseByComponent extends BaseComponent {}
|