This commit is contained in:
2025-11-04 10:41:23 +01:00
parent 54beac481b
commit 1af49f5228
5 changed files with 47 additions and 14 deletions

View File

@@ -1,12 +1,13 @@
import {Component} from '@angular/core';
import {Home} from './home/home';
import {RouterModule} from '@angular/router';
@Component({
selector: 'app-root',
imports: [Home],
templateUrl: './app.html',
styleUrls: ['./app.css'],
selector: 'app-root',
imports: [Home, RouterModule],
templateUrl: './app.html',
styleUrls: ['./app.css'],
})
export class App {
title = 'homes';
title = 'homes';
}