- contains basic chat via websocket - contains button to test websocket - contains button to test rest api
19 lines
337 B
TypeScript
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 {
|
|
}
|
|
|
|
}
|