-
-
-
Hello, {{ title() }}
-
Congratulations! Your app is running. 🎉
-
-
-
-
- @for (item of [
- { title: 'Explore the Docs', link: 'https://angular.dev' },
- { title: 'Learn with Tutorials', link: 'https://angular.dev/tutorials' },
- { title: 'Prompt and best practices for AI', link: 'https://angular.dev/ai/develop-with-ai'},
- { title: 'CLI Docs', link: 'https://angular.dev/tools/cli' },
- { title: 'Angular Language Service', link: 'https://angular.dev/tools/language-service' },
- { title: 'Angular DevTools', link: 'https://angular.dev/tools/devtools' },
- ]; track item.title) {
-
- {{ item.title }}
-
-
- }
-
-
-
+
+
+
+
I'm working
-
-
-
-
-
-
-
-
-
-
-
-
+
diff --git a/src/app/app.ts b/src/app/app.ts
index a8efe8f..193e757 100644
--- a/src/app/app.ts
+++ b/src/app/app.ts
@@ -1,12 +1,9 @@
import { Component, signal } from '@angular/core';
-import { RouterOutlet } from '@angular/router';
@Component({
selector: 'app-root',
- imports: [RouterOutlet],
templateUrl: './app.html',
styleUrl: './app.css'
})
export class App {
- protected readonly title = signal('temp-project');
}
diff --git a/src/app/header/header.html b/src/app/header/header.html
new file mode 100644
index 0000000..5202a6f
--- /dev/null
+++ b/src/app/header/header.html
@@ -0,0 +1 @@
+
The Header
diff --git a/src/app/header/header.ts b/src/app/header/header.ts
new file mode 100644
index 0000000..abdb9b4
--- /dev/null
+++ b/src/app/header/header.ts
@@ -0,0 +1,8 @@
+import { Component } from '@angular/core';
+@Component({
+ selector: 'app-header',
+ templateUrl: './header.html',
+})
+export class HeaderComponent {
+ title = 'app works!';
+}