forked from pjmolina/ng-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.module.ts
37 lines (35 loc) · 1.4 KB
/
app.module.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { AppComponent } from './app.component';
import { UserInputComponent } from './user-input/user-input.component';
import { ClickMeComponent } from './click-me/click-me.component';
import { KeyupComponent } from './keyup/keyup.component';
import { LoopBackComponent } from './loop-back/loop-back.component';
import { KeyFilteringComponent } from './key-filtering/key-filtering.component';
import { WithBlurComponent } from './with-blur/with-blur.component';
import { EnrollPeopleComponent } from './enroll-people/enroll-people.component';
import { TemplateDrivenFormComponent } from './template-driven-form/template-driven-form.component';
import { ForbiddenValidatorDirective } from './template-driven-form/ForbiddenValidatorDirective';
import { OnlyNumericValidatorDirective } from './template-driven-form/OnlyNumericValidatorDirective';
@NgModule({
declarations: [
AppComponent,
UserInputComponent,
ClickMeComponent,
KeyupComponent,
LoopBackComponent,
KeyFilteringComponent,
WithBlurComponent,
EnrollPeopleComponent,
TemplateDrivenFormComponent,
ForbiddenValidatorDirective,
OnlyNumericValidatorDirective
],
imports: [
BrowserModule, FormsModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }