privacy policy style

This commit is contained in:
Tykayn 2025-09-02 14:40:47 +02:00 committed by tykayn
parent d4f3c119b2
commit bca0e5563c
9 changed files with 117 additions and 50 deletions

View file

@ -8,5 +8,8 @@ import {Component, Input} from '@angular/core';
})
export class MultiSelector {
@Input() label!: string;
@Input() choices: any = ['choix 1', 'choix 2', 'choix 3'];
@Input() selectedChoices: any = ['choix 4'];
displayDropdown = true;
}