mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
11 lines
265 B
TypeScript
11 lines
265 B
TypeScript
|
import { Component, Input } from "@angular/core";
|
||
|
|
||
|
@Component({
|
||
|
selector: "my-page-header",
|
||
|
templateUrl: "./page-header.component.html",
|
||
|
styleUrls: ["./page-header.component.scss"],
|
||
|
})
|
||
|
export class PageHeaderComponent {
|
||
|
@Input() pageName: string;
|
||
|
}
|