Newer
Older
HoteleriaAdmin / src / app / starter / starter.component.ts
James Cuadrado on 26 May 2021 315 bytes init
import { Component, AfterViewInit } from '@angular/core';
@Component({
  templateUrl: './starter.component.html'
})
export class StarterComponent implements AfterViewInit {
  subtitle: string;
  constructor() {
    this.subtitle = 'This is some text within a card block.';
  }

  ngAfterViewInit() {}
}