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/pay/pay.component.ts
Mondei1 4955b098c4 Basic WebSocket implementaion
Downgrade to Socket.io 2.3.0
2020-12-27 22:38:20 +01:00

16 lines
263 B
TypeScript

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