18 lines
415 B
TypeScript
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',
|
|
}]
|
|
}
|