Skip to content

Instantly share code, notes, and snippets.

@cyrilletuzi
Created April 7, 2017 10:37
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 cyrilletuzi/08cac96df7106c2f25d335c559a48ff5 to your computer and use it in GitHub Desktop.
Save cyrilletuzi/08cac96df7106c2f25d335c559a48ff5 to your computer and use it in GitHub Desktop.
import { NgModule } from '@angular/core';
import { SomeComponent } from './some.component';
import { SomeDirective } from './some.directive';
import { SomePipe } from './some.pipe';
@NgModule({
declarations: [SomeComponent, SomeDirective, SomePipe],
exports: [SomeComponent, SomeDirective, SomePipe]
})
export class SomeModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment