Adding Lightning wrapper component

This commit is contained in:
softsimon
2022-05-06 16:31:25 +04:00
parent 9aa6455ef8
commit 04fbf3d669
6 changed files with 45 additions and 11 deletions

View File

@@ -0,0 +1,16 @@
import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';
import { WebsocketService } from 'src/app/services/websocket.service';
@Component({
selector: 'app-lightning-wrapper',
templateUrl: './lightning-wrapper.component.html',
styleUrls: ['./lightning-wrapper.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class LightningWrapperComponent {
constructor(
private websocketService: WebsocketService,
) { }
}