New base code for mempool blockchain explorerer
This commit is contained in:
19
frontend/src/app/components/about/about.component.ts
Normal file
19
frontend/src/app/components/about/about.component.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
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([]);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user