Skip to content

Instantly share code, notes, and snippets.

@subratastack
Created March 21, 2019 23:08
Show Gist options
  • Save subratastack/3147cf61fe104d1295d6a62ac73bb525 to your computer and use it in GitHub Desktop.
Save subratastack/3147cf61fe104d1295d6a62ac73bb525 to your computer and use it in GitHub Desktop.
Angualr 7 Pipes
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