/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docs/scenes/src/app/app.component.ts
18 строк
460 B
Shuaib Hasan Akib
docs: migrate selectors to self-closing tags to align with Angular style (#31811)
15 сен 2025, 10:23
Не верифицирован
15 сен 2025, 10:23
54280da
Код
Авторство
О чём код?
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {Component} from '@angular/core'; import {RouterOutlet} from '@angular/router'; @Component({ selector: 'app-root', template: '<router-outlet />', styleUrls: ['./app.component.scss'], imports: [RouterOutlet], }) export class AppComponent {}