mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Add an integration test to verify defer block behavior with input handling during server-side rendering (SSR). PR Close #61040
17 lines
474 B
TypeScript
17 lines
474 B
TypeScript
import {NgModule} from '@angular/core';
|
|
import {
|
|
BrowserModule,
|
|
provideClientHydration,
|
|
withIncrementalHydration,
|
|
} from '@angular/platform-browser';
|
|
|
|
import {AppRoutingModule} from './app-routing.module';
|
|
import {AppComponent} from './app.component';
|
|
|
|
@NgModule({
|
|
declarations: [AppComponent],
|
|
imports: [BrowserModule, AppRoutingModule],
|
|
providers: [provideClientHydration(withIncrementalHydration())],
|
|
bootstrap: [AppComponent],
|
|
})
|
|
export class AppModule {}
|