Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save t-palmer/203bc307d08bb45c825479a8b7d8db51 to your computer and use it in GitHub Desktop.
Save t-palmer/203bc307d08bb45c825479a8b7d8db51 to your computer and use it in GitHub Desktop.
import { NgModule } from '@angular/core';
import { ExampleNg6LibComponent } from './example-ng6-lib.component';
import { FooComponent } from './foo/foo.component';
@NgModule({
imports: [
],
declarations: [
ExampleNg6LibComponent,
FooComponent
],
exports: [
ExampleNg6LibComponent,
FooComponent
]
})
export class ExampleNg6LibModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment