tab switch results

This commit is contained in:
Tykayn 2025-09-15 17:46:00 +02:00 committed by tykayn
parent 97ab7a0920
commit 89cb0f2635
16 changed files with 396 additions and 238 deletions

View file

@ -1,18 +1,16 @@
import {Component, Input} from '@angular/core';
import {Copy} from '../../buttons/copy/copy';
@Component({
selector: 'sae-bot-talks',
imports: [],
imports: [
Copy
],
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',
}]
@Input() public message: string = 'Hello!';
@Input() public appState: any = {};
}