| 123456789101112 |
- import { Component, OnInit } from "@angular/core";
- @Component({
- selector: "app-emitters",
- templateUrl: "./emitters.component.html"
- })
- export class EmittersComponent implements OnInit {
- title: string = "Emisores";
- constructor() {}
- ngOnInit() {}
- }
|