mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-14 13:33:03 +00:00
12 lines
280 B
TypeScript
12 lines
280 B
TypeScript
import { Component, Input } from '@angular/core';
|
|
|
|
|
|
@Component({
|
|
selector: 'ds-comcol-page-header',
|
|
styleUrls: ['./comcol-page-header.component.css'],
|
|
templateUrl: './comcol-page-header.component.html',
|
|
})
|
|
export class ComcolPageHeaderComponent {
|
|
@Input() name: String;
|
|
}
|