This commit is contained in:
2025-11-04 10:56:19 +01:00
parent 1af49f5228
commit 28edfef8bf
5 changed files with 114 additions and 12 deletions

View File

@@ -1,8 +1,10 @@
import {Component, input} from '@angular/core'; // Importation de la fonction input() et des components
import {HousingLocationInfo} from '../housinglocation'; // Interface
import {RouterModule} from '@angular/router'; // Importation du router
@Component({
selector: 'app-housing-location',
imports: [],
imports: [RouterModule],
templateUrl: './housing-location.html',
styleUrls: ['./housing-location.css'],
})