17 lines
390 B
TypeScript
17 lines
390 B
TypeScript
import {Component, Input} from '@angular/core';
|
|
import {Copy} from '../../buttons/copy/copy';
|
|
|
|
@Component({
|
|
selector: 'sae-bot-talks',
|
|
imports: [
|
|
Copy
|
|
],
|
|
templateUrl: './bot-talks.html',
|
|
styleUrl: './bot-talks.scss'
|
|
})
|
|
export class BotTalks {
|
|
|
|
@Input() public message: string = 'Hello!';
|
|
@Input() public documents: Array<any> = [];
|
|
@Input() public appState: any = {};
|
|
}
|