Add app.component & app.config.ts

This commit is contained in:
Çetin
2025-01-03 12:52:44 +03:00
parent 3fde119e4d
commit 5678bbd553
2 changed files with 25 additions and 0 deletions

9
src/app.component.ts Normal file
View File

@@ -0,0 +1,9 @@
import { Component } from '@angular/core';
import {RouterModule} from '@angular/router';
@Component({
selector: 'app-root',
standalone: true,
imports: [RouterModule],
template:`<router-outlet></router-outlet>`,
})
export class AppComponent {}