15 lines
402 B
TypeScript
15 lines
402 B
TypeScript
import { Component, inject } from '@angular/core';
|
|
import { RouterOutlet } from '@angular/router';
|
|
import { SeoService } from './core/services/seo.service';
|
|
|
|
@Component({
|
|
selector: 'app-root',
|
|
standalone: true,
|
|
imports: [RouterOutlet],
|
|
templateUrl: './app.component.html',
|
|
styleUrl: './app.component.scss',
|
|
})
|
|
export class AppComponent {
|
|
private readonly seoService = inject(SeoService);
|
|
}
|