mempool/frontend/src/app/components/about/about.component.ts
2020-02-26 03:26:16 +09:00

20 lines
430 B
TypeScript

import { Component, OnInit } from '@angular/core';
import { WebsocketService } from '../../services/websocket.service';
@Component({
selector: 'app-about',
templateUrl: './about.component.html',
styleUrls: ['./about.component.scss']
})
export class AboutComponent implements OnInit {
constructor(
private websocketService: WebsocketService,
) { }
ngOnInit() {
this.websocketService.want(['blocks']);
}
}