refont back express

This commit is contained in:
jleroy
2025-03-11 10:29:18 +01:00
parent f944b99172
commit 4e41294eee
18 changed files with 507 additions and 9 deletions

View File

@@ -0,0 +1,19 @@
import { Component } from '@angular/core';
import {ReactiveFormsModule} from '@angular/forms';
import {NgForOf, NgIf} from '@angular/common';
@Component({
selector: 'app-search',
imports: [
NgIf,
NgForOf,
ReactiveFormsModule
],
templateUrl: './search.component.html',
styleUrl: './search.component.css'
})
export class SearchComponent {
}