/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/dev-app/examples-page/examples-page.ts
20 строк
643 B
Kristiyan Kostadinov
build: remove explicit OnPush from dev app
18 май 2026, 10:44
18 май 2026, 10:44
40d7c5a
Код
Авторство
О чём код?
/** * @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 {EXAMPLE_COMPONENTS} from '@angular/components-examples'; import {Component} from '@angular/core'; import {ExampleList} from '../example/example-list'; /** Renders all material examples listed in the generated EXAMPLE_COMPONENTS. */ @Component({ template: `<material-example-list [ids]="examples"></material-example-list>`, imports: [ExampleList], }) export class ExamplesPage { examples = Object.keys(EXAMPLE_COMPONENTS); }