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 = []; @Input() public appState: any = {}; }