Files
rona-frontend/src/app/chat/entry/entry.component.ts
Daniel Lukats d90204d34c initial commit
- contains basic chat via websocket
- contains button to test websocket
- contains button to test rest api
2020-07-19 22:16:23 +02:00

19 lines
337 B
TypeScript

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