Files
dspace-angular/src/themes/custom/app/+collection-page/collection-page.component.ts
2021-03-18 15:46:53 +01:00

18 lines
677 B
TypeScript

import { Component } from '@angular/core';
import { CollectionPageComponent as BaseComponent} from '../../../../app/+collection-page/collection-page.component';
/**
* This component representing the `Forbidden` DSpace page.
*/
@Component({
selector: 'ds-collection-page',
// templateUrl: './collection-page.component.html',
templateUrl: '../../../../app/+collection-page/collection-page.component.html',
// styleUrls: ['./collection-page.component.scss']
styleUrls: ['../../../../app/+collection-page/collection-page.component.scss']
})
/**
* Component to render the news section on the home page
*/
export class CollectionPageComponent extends BaseComponent {}