Introduction to Angular (Test the default app and run Hello Rupesh!)
This commit is contained in:
12
Week-03/Day_04/first-app/src/app/app.ts
Normal file
12
Week-03/Day_04/first-app/src/app/app.ts
Normal 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');
|
||||
}
|
||||
Reference in New Issue
Block a user