Created
May 21, 2018 15:48
-
-
Save t-palmer/203bc307d08bb45c825479a8b7d8db51 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 { 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