matrix-dimension/web/app/page-header/page-header.component.ts
Travis Ralston 6657d5dbf5 Start of a new UI for Dimension
Integrations need styling and the breadcrumbs don't work. Further, you can't actually add/edit anything.
2017-12-14 21:25:15 -07:00

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;
}