import { Component } from '@angular/core'; import { RouterModule } from '@angular/router'; @Component({ selector: 'app-root', standalone: true, imports: [RouterModule], template: `

Welcome to {{title}}!

{{ title }} app is running! Angular Logo

Here are some links to help you start:

`, styles: [] }) export class AppComponent { title = 'my-app'; }