2019-10-07 13:49:12 +09:00
|
|
|
import { Component, OnInit } from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'ucap-chat-message-box-schedule',
|
|
|
|
templateUrl: './schedule.component.html',
|
|
|
|
styleUrls: ['./schedule.component.scss']
|
|
|
|
})
|
|
|
|
export class ScheduleComponent implements OnInit {
|
|
|
|
constructor() {}
|
|
|
|
|
|
|
|
ngOnInit() {}
|
2019-11-06 13:48:06 +09:00
|
|
|
|
|
|
|
onClickSave(): void {}
|
2019-10-07 13:49:12 +09:00
|
|
|
}
|