profile-header.ts 375 B

123456789101112131415161718
  1. import { Component, Input } from "@angular/core";
  2. /**
  3. * Generated class for the ProfileHeaderComponent component.
  4. *
  5. * See https://angular.io/api/core/Component for more info on Angular
  6. * Components.
  7. */
  8. @Component({
  9. selector: "profile-header",
  10. templateUrl: "profile-header.html"
  11. })
  12. export class ProfileHeaderComponent {
  13. @Input()
  14. user: any;
  15. constructor() {}
  16. }