f971685a7c
renamed from cb-validation to cb-form-validation other refactorings and text changes
19 lines
539 B
TypeScript
19 lines
539 B
TypeScript
// #docregion
|
|
import { NgModule } from '@angular/core';
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
|
|
import { AppComponent } from './app.component';
|
|
import { HeroFormTemplateModule } from './template/hero-form-template.module';
|
|
import { HeroFormReactiveModule } from './reactive/hero-form-reactive.module';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
BrowserModule,
|
|
HeroFormTemplateModule,
|
|
HeroFormReactiveModule
|
|
],
|
|
declarations: [ AppComponent ],
|
|
bootstrap: [ AppComponent ]
|
|
})
|
|
export class AppModule { }
|