15 lines
275 B
TypeScript
15 lines
275 B
TypeScript
|
import { Component, OnInit } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'ucap-chat-form',
|
||
|
templateUrl: './form.component.html',
|
||
|
styleUrls: ['./form.component.scss']
|
||
|
})
|
||
|
export class FormComponent implements OnInit {
|
||
|
constructor() {}
|
||
|
|
||
|
ngOnInit() {}
|
||
|
|
||
|
send() {}
|
||
|
}
|