ng-implementation/my-workspace/projects/sae-lib/chatbot/bot-talks/bot-talks.ts

19 lines
415 B
TypeScript
Raw Normal View History

2025-09-02 14:16:41 +02:00
import {Component, Input} from '@angular/core';
2025-08-07 16:42:16 +02:00
@Component({
2025-08-08 10:57:00 +02:00
selector: 'sae-bot-talks',
2025-08-07 16:42:16 +02:00
imports: [],
templateUrl: './bot-talks.html',
2025-09-02 14:16:41 +02:00
styleUrl: './bot-talks.scss'
2025-08-07 16:42:16 +02:00
})
export class BotTalks {
2025-09-02 14:16:41 +02:00
@Input() public message = 'Hello!';
@Input() public links: any = [
2025-08-07 16:42:16 +02:00
{
title: 'Refusal notice :',
label: 'DMP-00051341: Avis de refus',
url: 'https://www.cipherbliss.com/fake-link',
}]
}