angular/integration/forms/src/app/app.module.ts
Andrew Kushnir 4637df5551 test(forms): add integration test app to keep track of payload size (#41045)
This commit adds a Forms-based test app into the `integration` folder to have an ability to measure and keep
track of payload size for the changes in Forms package.

PR Close #41045
2021-03-05 09:45:42 -08:00

23 lines
568 B
TypeScript

import {CommonModule} from '@angular/common';
import {NgModule} from '@angular/core';
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
import {BrowserModule} from '@angular/platform-browser';
import {AppComponent, ReactiveFormsComponent, TemplateFormsComponent} from './app.component';
@NgModule({
declarations: [
AppComponent,
TemplateFormsComponent,
ReactiveFormsComponent,
],
imports: [
BrowserModule,
CommonModule,
FormsModule,
ReactiveFormsModule,
],
bootstrap: [AppComponent]
})
export class AppModule {
}