Added a bunch of stuff

This commit is contained in:
jfusia
2024-05-22 14:07:00 -04:00
parent 547783aa73
commit 17f5b675b9
70 changed files with 45689 additions and 365 deletions

View File

@@ -0,0 +1,17 @@
import { Component, Input, inject } from '@angular/core';
import { DataService } from '../../services/data.service';
import { CommonModule } from '@angular/common';
@Component({
selector: 'fbi-select',
standalone: true,
imports: [CommonModule],
templateUrl: './select.component.html',
styleUrl: './select.component.scss',
})
export class SelectComponent {
@Input() label!: string;
@Input() data!: (string | number)[];
private dataService = inject(DataService);
}