Skip to content

Instantly share code, notes, and snippets.

@anantl05
Created September 3, 2019 05:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anantl05/e18bb34db84286e8755fb7a014844ee4 to your computer and use it in GitHub Desktop.
Save anantl05/e18bb34db84286e8755fb7a014844ee4 to your computer and use it in GitHub Desktop.
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { AppComponent } from './app.component';
import { HelloComponent } from './hello.component';
import { EqualValidatorDirective } from './shared/equal.validator.directive';
@NgModule({
imports: [ BrowserModule, FormsModule, ReactiveFormsModule ],
declarations: [ AppComponent, HelloComponent, EqualValidatorDirective ],
bootstrap: [ AppComponent ]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment