mempool/frontend/src/app/about/about.component.ts

20 lines
398 B
TypeScript
Raw Normal View History

2019-07-21 16:59:47 +02:00
import { Component, OnInit } from '@angular/core';
import { ApiService } from '../services/api.service';
2019-07-21 16:59:47 +02:00
@Component({
selector: 'app-about',
templateUrl: './about.component.html',
styleUrls: ['./about.component.scss']
})
export class AboutComponent implements OnInit {
constructor(
private apiService: ApiService,
) { }
2019-07-21 16:59:47 +02:00
ngOnInit() {
2019-08-09 20:45:31 +02:00
this.apiService.webSocketWant([]);
2019-07-21 16:59:47 +02:00
}
}