This repository has been archived on 2022-08-25. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Frontend/src/app/hello/hello.component.ts
Mondei1 4955b098c4 Basic WebSocket implementaion
Downgrade to Socket.io 2.3.0
2020-12-27 22:38:20 +01:00

16 lines
271 B
TypeScript

import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-hello',
templateUrl: './hello.component.html',
styleUrls: ['./hello.component.css']
})
export class HelloComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}