Skip to content

Instantly share code, notes, and snippets.

@hetdev
Created August 27, 2019 16:58
Show Gist options
  • Save hetdev/6e1722dfafe2af6793e459f150e1900f to your computer and use it in GitHub Desktop.
Save hetdev/6e1722dfafe2af6793e459f150e1900f to your computer and use it in GitHub Desktop.

Revisions

  1. hetdev created this gist Aug 27, 2019.
    29 changes: 29 additions & 0 deletions app.module.ts
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,29 @@
    import { BrowserModule } from '@angular/platform-browser';
    import {CUSTOM_ELEMENTS_SCHEMA, NgModule} from '@angular/core';

    import { AppRoutingModule } from './app-routing.module';
    import { AppComponent } from './app.component';
    import { ProfileComponent } from './profile/profile.component';
    import { LoginComponent } from './login/login.component';
    import {NgbModule} from '@ng-bootstrap/ng-bootstrap';
    import { CallbackComponent } from './callback/callback.component';
    import {LazyElementsModule} from '@angular-extensions/elements';

    @NgModule({
    schemas: [CUSTOM_ELEMENTS_SCHEMA],
    declarations: [
    AppComponent,
    ProfileComponent,
    LoginComponent,
    CallbackComponent
    ],
    imports: [
    BrowserModule,
    AppRoutingModule,
    NgbModule,
    LazyElementsModule
    ],
    providers: [],
    bootstrap: [AppComponent]
    })
    export class AppModule { }