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

20 lines
422 B
TypeScript
Raw Normal View History

2019-07-21 16:59:47 +02:00
import { Component, OnInit } from '@angular/core';
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 {
constructor(
private websocketService: WebsocketService,
) { }
2019-07-21 16:59:47 +02:00
ngOnInit() {
this.websocketService.want([]);
2019-07-21 16:59:47 +02:00
}
}