mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
6657d5dbf5
Integrations need styling and the breadcrumbs don't work. Further, you can't actually add/edit anything.
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;
|
|
}
|