mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
17 lines
668 B
TypeScript
17 lines
668 B
TypeScript
import { Component } from '@angular/core';
|
|
import { ViewMode } from '../../../../core/shared/view-mode.model';
|
|
import { listableObjectComponent } from '../../../../shared/object-collection/shared/listable-object/listable-object.decorator';
|
|
import { ItemComponent } from '../../../../item-page/simple/item-types/shared/item.component';
|
|
|
|
@listableObjectComponent('Person', ViewMode.StandalonePage)
|
|
@Component({
|
|
selector: 'ds-person',
|
|
styleUrls: ['./person.component.scss'],
|
|
templateUrl: './person.component.html'
|
|
})
|
|
/**
|
|
* The component for displaying metadata and relations of an item of the type Person
|
|
*/
|
|
export class PersonComponent extends ItemComponent {
|
|
}
|