Newer
Older
GestionHoteleria / src / app / extra-component / editor / editor.component.ts
James Cuadrado on 23 May 2021 313 bytes new repository
import { Component, AfterViewInit } from '@angular/core';
@Component({
  templateUrl: './editor.component.html'
})
export class EditorComponent implements AfterViewInit {
  subtitle: string;
  constructor() {
    this.subtitle = 'This is some text within a card block.';
  }

  ngAfterViewInit() {}
}