2019-07-21 16:59:47 +02:00
|
|
|
import { Component, OnInit } from '@angular/core';
|
2020-02-16 16:15:07 +01:00
|
|
|
import { WebsocketService } from '../../services/websocket.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 {
|
|
|
|
|
2019-07-26 11:48:32 +02:00
|
|
|
constructor(
|
2020-02-16 16:15:07 +01:00
|
|
|
private websocketService: WebsocketService,
|
2019-07-26 11:48:32 +02:00
|
|
|
) { }
|
2019-07-21 16:59:47 +02:00
|
|
|
|
|
|
|
ngOnInit() {
|
2020-02-17 14:39:20 +01:00
|
|
|
this.websocketService.want(['blocks']);
|
2019-07-21 16:59:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|