botonera.component.ts 401 Bytes
import { Component } from '@angular/core';
import { BotonServiceService } from 'src/app/boton-service.service';

@Component({
  selector: 'app-botonera',
  templateUrl: './botonera.component.html',
  styleUrls: ['./botonera.component.scss']
})

export class AppBotonera {
  botones = new BotonServiceService().getBotones();
  paginas = [1];

  showTerminal() {
    alert('No disponible aún');
  }

}