botonera.component.ts 343 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.css']
})

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

}