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

23 lines
571 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';
2020-03-23 18:52:08 +01:00
import { SeoService } from 'src/app/services/seo.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,
2020-03-23 18:52:08 +01:00
private seoService: SeoService,
) { }
2019-07-21 16:59:47 +02:00
ngOnInit() {
2020-03-23 18:52:08 +01:00
this.seoService.setTitle('Contributors');
2020-02-17 14:39:20 +01:00
this.websocketService.want(['blocks']);
2019-07-21 16:59:47 +02:00
}
}