ng-implementation/my-workspace/projects/sae-lib/chatbot/bot-talks/bot-talks.ts
2025-09-15 18:08:52 +02:00

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 = {};
}