Introduction to Angular (Test the default app and run Hello Rupesh!)

This commit is contained in:
2026-03-02 01:21:40 +05:30
parent 484a8a4958
commit 20a2a8b7ae
24 changed files with 9373 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import { Component, signal } from '@angular/core';
import { RouterOutlet } from '@angular/router';
@Component({
selector: 'app-root',
imports: [RouterOutlet],
template: `<h1>Hello Rupesh!</h1>`,
styleUrl: './app.css'
})
export class App {
protected readonly title = signal('first-app');
}