Created
March 21, 2019 23:08
-
-
Save subratastack/3147cf61fe104d1295d6a62ac73bb525 to your computer and use it in GitHub Desktop.
Angualr 7 Pipes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { NgModule } from '@angular/core'; | |
import { BrowserModule } from '@angular/platform-browser'; | |
import { FormsModule } from '@angular/forms'; | |
import { AppComponent } from './app.component'; | |
import { HelloComponent } from './hello.component'; | |
import { SearchPipe } from './search.pipe' | |
@NgModule({ | |
imports: [ BrowserModule, FormsModule ], | |
declarations: [ AppComponent, HelloComponent, SearchPipe ], | |
bootstrap: [ AppComponent ] | |
}) | |
export class AppModule { } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment