Skip to content

Instantly share code, notes, and snippets.

@t-palmer
Created May 19, 2018 14:24
Show Gist options
  • Save t-palmer/59433470ba06296d1f1e8a44574fde61 to your computer and use it in GitHub Desktop.
Save t-palmer/59433470ba06296d1f1e8a44574fde61 to your computer and use it in GitHub Desktop.
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { ExampleNg6LibModule } from 'example-ng6-lib';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
ExampleNg6LibModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment