/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/core/test/bundling/hydration/main.ts
18 строк
501 B
Kristiyan Kostadinov
refactor: clean up explicit standalone flags from tests (#63963)
22 сен 2025, 17:27
22 сен 2025, 17:27
f5b50ec
Код
Авторство
О чём код?
/** * @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 {bootstrapApplication, provideClientHydration} from '@angular/platform-browser'; @Component({ selector: 'hello-world', template: 'Hello World!', }) class HelloWorld {} bootstrapApplication(HelloWorld, {providers: [provideClientHydration()]});