ng-implementation/my-workspace/projects/sae-lib/chatbot/bot-talks/bot-talks.ts
2025-09-02 14:16:41 +02:00

18 lines
415 B
TypeScript

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