/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v22.0.5
src/dev-app/dev-app.ts
20 строк
635 B
Kristiyan Kostadinov
build: remove explicit OnPush from dev app
18 май 2026, 10:44
18 май 2026, 10:44
1cc9304
Код
Авторство
О чём код?
/** * @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, ViewEncapsulation} from '@angular/core'; import {RouterModule} from '@angular/router'; import {DevAppLayout} from './dev-app/dev-app-layout'; /** Root component for the dev-app demos. */ @Component({ selector: 'dev-app', template: '<dev-app-layout><router-outlet></router-outlet></dev-app-layout>', encapsulation: ViewEncapsulation.None, imports: [DevAppLayout, RouterModule], }) export class DevApp {}