2019-10-14 17:19:13 +09:00
|
|
|
import { Component, OnInit, Input } from '@angular/core';
|
2019-11-06 13:48:06 +09:00
|
|
|
import { Info, EventJson } from '@ucap-webmessenger/protocol-event';
|
2019-10-07 13:49:12 +09:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'ucap-chat-message-box-date-splitter',
|
|
|
|
templateUrl: './date-splitter.component.html',
|
2019-11-27 17:56:24 +09:00
|
|
|
styleUrls: ['./date-splitter.component.scss']
|
2019-10-07 13:49:12 +09:00
|
|
|
})
|
|
|
|
export class DateSplitterComponent implements OnInit {
|
2019-10-14 17:19:13 +09:00
|
|
|
@Input()
|
2019-11-06 13:48:06 +09:00
|
|
|
message: Info<EventJson>;
|
2019-10-07 13:49:12 +09:00
|
|
|
|
2019-11-27 17:56:24 +09:00
|
|
|
constructor() {}
|
2019-10-14 17:19:13 +09:00
|
|
|
|
2019-11-27 17:56:24 +09:00
|
|
|
ngOnInit() {}
|
2019-10-07 13:49:12 +09:00
|
|
|
}
|