csc multiple selectors

This commit is contained in:
Tykayn 2025-08-22 12:52:30 +02:00 committed by tykayn
parent 9307e1852f
commit 05d8ba8117
13 changed files with 96 additions and 69 deletions

View file

@ -1,4 +1,4 @@
import {Component} from '@angular/core';
import {Component, Input} from '@angular/core';
@Component({
selector: 'sae-multi-selector',
@ -7,5 +7,6 @@ import {Component} from '@angular/core';
styleUrl: './multi-selector.scss'
})
export class MultiSelector {
@Input() label!: string;
}