diff --git a/src/app/logs/logs.component.ts b/src/app/logs/logs.component.ts index 76574ed..f88ef54 100644 --- a/src/app/logs/logs.component.ts +++ b/src/app/logs/logs.component.ts @@ -1,6 +1,11 @@ import { Component, OnInit } from '@angular/core'; import { MarkdownService } from '../markdown.service'; +class Message { + originator: string; + timestamp: Date; + message: string; +} @Component({ selector: 'app-logs',