This commit is contained in:
2025-11-04 09:43:48 +01:00
parent 1f24176c32
commit 95c15d48ab
6 changed files with 110 additions and 29 deletions

View File

@@ -0,0 +1,15 @@
import {Component, input} from '@angular/core'; // Importation de la fonction input() et des components
import {HousingLocationInfo} from '../housinglocation'; // Interface
@Component({
selector: 'app-housing-location',
imports: [],
template: `
<p>
housing-location works!
</p>
`,
styleUrls: ['./housing-location.css'],
})
export class HousingLocation {
housingLocation = input.required<HousingLocationInfo>();
}